Skip to content

Commit

Permalink
Changes Flask version requirement to 0.11
Browse files Browse the repository at this point in the history
  • Loading branch information
jfinkels committed Mar 25, 2017
1 parent 5893b52 commit b079bd6
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion docs/installation.rst
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ currently include versions 2.6, 2.7, 3.3, 3.4, and 3.5.
Flask-Restless has the following dependencies (which will be automatically
installed if you use ``pip``):

* `Flask`_ version 1.0 or greater
* `Flask`_ version 0.11 or greater
* `SQLAlchemy`_ version 0.8 or greater
* `python-dateutil`_ version strictly greater than 2.2

Expand Down
2 changes: 1 addition & 1 deletion requirements/install.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
flask>=1.0
flask>=0.11
flask-sqlalchemy>=0.10
sqlalchemy>=0.8
python-dateutil>2.2
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@

#: The installation requirements for Flask-Restless. Flask-SQLAlchemy is not
#: required, so the user must install it explicitly.
REQUIREMENTS = ['flask>=1.0', 'sqlalchemy>=0.8', 'python-dateutil>2.2']
REQUIREMENTS = ['flask>=0.11', 'sqlalchemy>=0.8', 'python-dateutil>2.2']

#: The absolute path to this file.
HERE = os.path.abspath(os.path.dirname(__file__))
Expand Down

0 comments on commit b079bd6

Please sign in to comment.