Browse Source

document python 2.6 minimum requirement, remove all stuff that refers to 2.5

pull/731/head
Thomas Waldmann 12 years ago
parent
commit
40fad2ece8
  1. 1
      .travis.yml
  2. 2
      CHANGES
  3. 2
      docs/extensiondev.rst
  4. 2
      docs/installation.rst
  5. 4
      docs/patterns/jquery.rst
  6. 7
      docs/tutorial/dbinit.rst
  7. 3
      flask/json.py
  8. 2
      flask/wrappers.py
  9. 4
      scripts/flask-07-upgrade.py
  10. 1
      setup.py

1
.travis.yml

@ -1,7 +1,6 @@
language: python language: python
python: python:
- 2.5
- 2.6 - 2.6
- 2.7 - 2.7
- pypy - pypy

2
CHANGES

@ -54,6 +54,8 @@ Release date to be decided.
- Added `message_flashed` signal that simplifies flashing testing. - Added `message_flashed` signal that simplifies flashing testing.
- Added support for copying of request contexts for better working with - Added support for copying of request contexts for better working with
greenlets. greenlets.
- Python requirements changed: requiring Python 2.6 or 2.7 now to prepare
for Python 3.3 port.
Version 0.9 Version 0.9
----------- -----------

2
docs/extensiondev.rst

@ -390,7 +390,7 @@ extension to be approved you have to follow these guidelines:
(``PackageName==dev``). (``PackageName==dev``).
9. The ``zip_safe`` flag in the setup script must be set to ``False``, 9. The ``zip_safe`` flag in the setup script must be set to ``False``,
even if the extension would be safe for zipping. even if the extension would be safe for zipping.
10. An extension currently has to support Python 2.5, 2.6 as well as 10. An extension currently has to support Python 2.6 as well as
Python 2.7 Python 2.7

2
docs/installation.rst

@ -13,7 +13,7 @@ So how do you get all that on your computer quickly? There are many ways you
could do that, but the most kick-ass method is virtualenv, so let's have a look could do that, but the most kick-ass method is virtualenv, so let's have a look
at that first. at that first.
You will need Python 2.5 or higher to get started, so be sure to have an You will need Python 2.6 or higher to get started, so be sure to have an
up-to-date Python 2.x installation. Python 3.x is not supported. up-to-date Python 2.x installation. Python 3.x is not supported.
.. _virtualenv: .. _virtualenv:

4
docs/patterns/jquery.rst

@ -11,11 +11,7 @@ Python primitives (numbers, strings, dicts and lists) look like which is
widely supported and very easy to parse. It became popular a few years widely supported and very easy to parse. It became popular a few years
ago and quickly replaced XML as transport format in web applications. ago and quickly replaced XML as transport format in web applications.
If you have Python 2.6 JSON will work out of the box, in Python 2.5 you
will have to install the `simplejson`_ library from PyPI.
.. _jQuery: http://jquery.com/ .. _jQuery: http://jquery.com/
.. _simplejson: http://pypi.python.org/pypi/simplejson
Loading jQuery Loading jQuery
-------------- --------------

7
docs/tutorial/dbinit.rst

@ -21,12 +21,9 @@ errors. It's a good idea to add a function that initializes the database
for you to the application. for you to the application.
If you want to do that, you first have to import the If you want to do that, you first have to import the
:func:`contextlib.closing` function from the contextlib package. If you :func:`contextlib.closing` function from the contextlib package.
want to use Python 2.5 it's also necessary to enable the `with` statement Accordingly, add the following lines to your existing imports in `flaskr.py`::
first (`__future__` imports must be the very first import). Accordingly,
add the following lines to your existing imports in `flaskr.py`::
from __future__ import with_statement
from contextlib import closing from contextlib import closing
Next we can create a function called `init_db` that initializes the Next we can create a function called `init_db` that initializes the

3
flask/json.py

@ -161,8 +161,7 @@ def jsonify(*args, **kwargs):
"id": 42 "id": 42
} }
This requires Python 2.6 or an installed version of simplejson. For For security reasons only objects are supported toplevel. For more
security reasons only objects are supported toplevel. For more
information about this, have a look at :ref:`json-security`. information about this, have a look at :ref:`json-security`.
.. versionadded:: 0.2 .. versionadded:: 0.2

2
flask/wrappers.py

@ -92,8 +92,6 @@ class Request(RequestBase):
def json(self): def json(self):
"""If the mimetype is `application/json` this will contain the """If the mimetype is `application/json` this will contain the
parsed JSON data. Otherwise this will be `None`. parsed JSON data. Otherwise this will be `None`.
This requires Python 2.6 or an installed version of simplejson.
""" """
if self.mimetype == 'application/json': if self.mimetype == 'application/json':
request_charset = self.mimetype_params.get('charset') request_charset = self.mimetype_params.get('charset')

4
scripts/flask-07-upgrade.py

@ -287,9 +287,7 @@ def main():
args = ['.'] args = ['.']
if ast is None: if ast is None:
parser.error('Python 2.6 or later is required to run the upgrade script.\n' parser.error('Python 2.6 or later is required to run the upgrade script.')
'The runtime requirements for Flask 0.7 however are still '
'Python 2.5.')
for path in args: for path in args:
scan_path(path, teardown=not options.no_teardown) scan_path(path, teardown=not options.no_teardown)

1
setup.py

@ -101,7 +101,6 @@ setup(
'License :: OSI Approved :: BSD License', 'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent', 'Operating System :: OS Independent',
'Programming Language :: Python', 'Programming Language :: Python',
'Programming Language :: Python :: 2.5',
'Programming Language :: Python :: 2.6', 'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7', 'Programming Language :: Python :: 2.7',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content', 'Topic :: Internet :: WWW/HTTP :: Dynamic Content',

Loading…
Cancel
Save