Skip to content

Commit

Permalink
Updates Flask version requirement to 1.0.
Browse files Browse the repository at this point in the history
  • Loading branch information
jfinkels committed May 3, 2016
1 parent 90256d3 commit df82bcd
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, and 3.4.
Flask-Restless has the following dependencies (which will be automatically
installed if you use ``pip``):

* `Flask`_ version 0.10 or greater
* `Flask`_ version 1.0 or greater
* `SQLAlchemy`_ version 0.8 or greater
* `mimerender`_ version 0.5.2 or greater
* `python-dateutil`_ version strictly greater than 2.2
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
flask>=0.10
flask>=1.0
flask-sqlalchemy>=0.10
sqlalchemy>=0.8
python-dateutil>2.2
Expand Down
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>=0.10', 'sqlalchemy>=0.8', 'python-dateutil>2.2',
REQUIREMENTS = ['flask>=1.0', 'sqlalchemy>=0.8', 'python-dateutil>2.2',
'mimerender>=0.5.2']

#: The absolute path to this file.
Expand Down

0 comments on commit df82bcd

Please sign in to comment.