mirror of
https://github.com/getpelican/pelican.git
synced 2025-10-15 20:28:56 +02:00
Drop python 3.2 support and move to python 3.3.
Jinja 2.7 (released 2013-05-20) supports only Python3 >=3.3 so it is time to drop Python 3.2 and move to 3.3
This commit is contained in:
parent
427a5ca3c3
commit
7057d3742b
6 changed files with 22 additions and 61 deletions
7
setup.py
7
setup.py
|
|
@ -4,11 +4,6 @@ from setuptools import setup
|
|||
requires = ['feedgenerator >= 1.6', 'jinja2 >= 2.6', 'pygments', 'docutils',
|
||||
'pytz', 'blinker', 'unidecode', 'six']
|
||||
|
||||
try:
|
||||
import argparse # NOQA
|
||||
except ImportError:
|
||||
requires.append('argparse')
|
||||
|
||||
entry_points = {
|
||||
'console_scripts': [
|
||||
'pelican = pelican:main',
|
||||
|
|
@ -41,9 +36,9 @@ setup(
|
|||
'Environment :: Console',
|
||||
'License :: OSI Approved :: GNU Affero General Public License v3',
|
||||
'Operating System :: OS Independent',
|
||||
'Programming Language :: Python :: 2',
|
||||
'Programming Language :: Python :: 2.7',
|
||||
'Programming Language :: Python :: 3',
|
||||
'Programming Language :: Python :: 3.2',
|
||||
'Programming Language :: Python :: 3.3',
|
||||
'Topic :: Internet :: WWW/HTTP',
|
||||
'Topic :: Software Development :: Libraries :: Python Modules',
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue