From 85e56d42ebaf5fa2ba0222add9cd30783491ae1e Mon Sep 17 00:00:00 2001 From: Jeffrey Finkelstein Date: Thu, 28 Apr 2016 00:45:11 -0400 Subject: [PATCH] Updates Flask version requirement to 1.0. --- docs/installation.rst | 2 +- requirements.txt | 2 +- setup.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/installation.rst b/docs/installation.rst index 90a7423a..649d8b9a 100644 --- a/docs/installation.rst +++ b/docs/installation.rst @@ -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 0.10 or greater +* `Flask`_ version 1.0 or greater * `SQLAlchemy`_ version 0.8 or greater * `python-dateutil`_ version strictly greater than 2.2 * `Flask-SQLAlchemy`_, *only if* you want to define your models using diff --git a/requirements.txt b/requirements.txt index 06e39b47..3a25af8e 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,4 +1,4 @@ -flask>=0.10 +flask>=1.0 flask-sqlalchemy>=0.10 sqlalchemy>=0.8 python-dateutil>2.2 diff --git a/setup.py b/setup.py index 6b52f0c1..55c24049 100644 --- a/setup.py +++ b/setup.py @@ -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'] #: The absolute path to this file. HERE = os.path.abspath(os.path.dirname(__file__))