From b079bd6e3d49d62fe1c83d02e14792ebb1d7d726 Mon Sep 17 00:00:00 2001 From: Jeffrey Finkelstein Date: Sat, 25 Mar 2017 01:30:16 -0400 Subject: [PATCH] Changes Flask version requirement to 0.11 --- docs/installation.rst | 2 +- requirements/install.txt | 2 +- setup.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/installation.rst b/docs/installation.rst index 1da01237..3ff95162 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 1.0 or greater +* `Flask`_ version 0.11 or greater * `SQLAlchemy`_ version 0.8 or greater * `python-dateutil`_ version strictly greater than 2.2 diff --git a/requirements/install.txt b/requirements/install.txt index 3a25af8e..66a1c664 100644 --- a/requirements/install.txt +++ b/requirements/install.txt @@ -1,4 +1,4 @@ -flask>=1.0 +flask>=0.11 flask-sqlalchemy>=0.10 sqlalchemy>=0.8 python-dateutil>2.2 diff --git a/setup.py b/setup.py index 55c24049..2e0d76d2 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>=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__))