Remove python 2.6 and 3.3 everywhere. (#2583)

This commit is contained in:
Hsiaoming Yang 2018-01-06 18:49:50 +09:00 committed by Armin Ronacher
parent 22e072379b
commit 60eecb547d
4 changed files with 4 additions and 5 deletions

View file

@ -21,6 +21,7 @@ Patches and Suggestions
- Edmond Burnett - Edmond Burnett
- Florent Xicluna - Florent Xicluna
- Georg Brandl - Georg Brandl
- Hsiaoming Yang @lepture
- Jeff Widman @jeffwidman - Jeff Widman @jeffwidman
- Joshua Bronson @jab - Joshua Bronson @jab
- Justin Quick - Justin Quick

View file

@ -109,8 +109,8 @@ depends on which part of Flask you're working on. Travis-CI will run the full
suite when you submit your pull request. suite when you submit your pull request.
The full test suite takes a long time to run because it tests multiple The full test suite takes a long time to run because it tests multiple
combinations of Python and dependencies. You need to have Python 2.6, 2.7, 3.3, combinations of Python and dependencies. You need to have Python 2.7, 3.4,
3.4, 3.5 3.6, and PyPy 2.7 installed to run all of the environments. Then run:: 3.5 3.6, and PyPy 2.7 installed to run all of the environments. Then run::
tox tox

View file

@ -111,7 +111,7 @@ Set yourapplication.fcgi::
#!/usr/bin/python #!/usr/bin/python
#: optional path to your local python site-packages folder #: optional path to your local python site-packages folder
import sys import sys
sys.path.insert(0, '<your_local_path>/lib/python2.6/site-packages') sys.path.insert(0, '<your_local_path>/lib/python<your_python_version>/site-packages')
from flup.server.fcgi import WSGIServer from flup.server.fcgi import WSGIServer
from yourapplication import app from yourapplication import app

View file

@ -95,10 +95,8 @@ setup(
'Operating System :: OS Independent', 'Operating System :: OS Independent',
'Programming Language :: Python', 'Programming Language :: Python',
'Programming Language :: Python :: 2', 'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7', 'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3', 'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4', 'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5', 'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6', 'Programming Language :: Python :: 3.6',