mirror of
https://github.com/getpelican/pelican.git
synced 2025-10-15 20:28:56 +02:00
Remove Python 2.7 support from settings
This commit is contained in:
parent
01eb08c42b
commit
ae73d06301
5 changed files with 3 additions and 8 deletions
|
|
@ -11,7 +11,6 @@ env:
|
||||||
matrix:
|
matrix:
|
||||||
- TOX_ENV=docs
|
- TOX_ENV=docs
|
||||||
- TOX_ENV=flake8
|
- TOX_ENV=flake8
|
||||||
- TOX_ENV=py27
|
|
||||||
- TOX_ENV=py35
|
- TOX_ENV=py35
|
||||||
- TOX_ENV=py36
|
- TOX_ENV=py36
|
||||||
matrix:
|
matrix:
|
||||||
|
|
|
||||||
1
THANKS
1
THANKS
|
|
@ -117,6 +117,7 @@ Nico Di Rocco
|
||||||
Nicolas Duhamel
|
Nicolas Duhamel
|
||||||
Nicolas Perriault
|
Nicolas Perriault
|
||||||
Nicolas Steinmetz
|
Nicolas Steinmetz
|
||||||
|
Paolo Melchiorre
|
||||||
Paul Asselin
|
Paul Asselin
|
||||||
Pavel Puchkin
|
Pavel Puchkin
|
||||||
Perry Roper
|
Perry Roper
|
||||||
|
|
|
||||||
|
|
@ -17,8 +17,6 @@ classifiers = [
|
||||||
"Framework :: Pelican",
|
"Framework :: Pelican",
|
||||||
"License :: OSI Approved :: GNU Affero General Public License v3",
|
"License :: OSI Approved :: GNU Affero General Public License v3",
|
||||||
"Operating System :: OS Independent",
|
"Operating System :: OS Independent",
|
||||||
"Programming Language :: Python :: 2",
|
|
||||||
"Programming Language :: Python :: 2.7",
|
|
||||||
"Programming Language :: Python :: 3",
|
"Programming Language :: Python :: 3",
|
||||||
"Programming Language :: Python :: 3.5",
|
"Programming Language :: Python :: 3.5",
|
||||||
"Programming Language :: Python :: 3.6",
|
"Programming Language :: Python :: 3.6",
|
||||||
|
|
@ -29,7 +27,7 @@ classifiers = [
|
||||||
]
|
]
|
||||||
|
|
||||||
[tool.poetry.dependencies]
|
[tool.poetry.dependencies]
|
||||||
python = "~2.7 || ^3.5"
|
python = "^3.5"
|
||||||
feedgenerator = "^1.9"
|
feedgenerator = "^1.9"
|
||||||
jinja2 = "~2.10.1"
|
jinja2 = "~2.10.1"
|
||||||
pygments = "^2.4"
|
pygments = "^2.4"
|
||||||
|
|
|
||||||
2
setup.py
2
setup.py
|
|
@ -71,8 +71,6 @@ setup(
|
||||||
'Framework :: Pelican',
|
'Framework :: Pelican',
|
||||||
'License :: OSI Approved :: GNU Affero General Public License v3',
|
'License :: OSI Approved :: GNU Affero General Public License v3',
|
||||||
'Operating System :: OS Independent',
|
'Operating System :: OS Independent',
|
||||||
'Programming Language :: Python :: 2',
|
|
||||||
'Programming Language :: Python :: 2.7',
|
|
||||||
'Programming Language :: Python :: 3',
|
'Programming Language :: Python :: 3',
|
||||||
'Programming Language :: Python :: 3.5',
|
'Programming Language :: Python :: 3.5',
|
||||||
'Programming Language :: Python :: 3.6',
|
'Programming Language :: Python :: 3.6',
|
||||||
|
|
|
||||||
3
tox.ini
3
tox.ini
|
|
@ -1,9 +1,8 @@
|
||||||
[tox]
|
[tox]
|
||||||
envlist = py{27,35,36,37},docs,flake8
|
envlist = py{35,36,37},docs,flake8
|
||||||
|
|
||||||
[testenv]
|
[testenv]
|
||||||
basepython =
|
basepython =
|
||||||
py27: python2.7
|
|
||||||
py35: python3.5
|
py35: python3.5
|
||||||
py36: python3.6
|
py36: python3.6
|
||||||
py37: python3.7
|
py37: python3.7
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue