Skip to content

Commit

Permalink
Add dependency on Flask-FeatureFlags v1.0
Browse files Browse the repository at this point in the history
 - no breaking code change, but as this version is not on PyPI, a
   manual update to requirements-app.txt will be required.

https://trello.com/c/MF5RbH7K/425-flask-feature-flags-deprecation-warning
  • Loading branch information
galund committed Jun 26, 2018
1 parent f26efa3 commit 286aea6
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

Records breaking changes from major version bumps

## 40.0.0

Updated dependency on Flask-FeatureFlags v1.0 must be added to `requirements-app.txt` as this version is not on PyPI.

## 39.0.0

PR [407](https://github.com/alphagov/digitalmarketplace-utils/pull/407)
Expand Down
2 changes: 1 addition & 1 deletion dmutils/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@
import flask_featureflags # noqa


__version__ = '39.4.0'
__version__ = '40.0.0'
4 changes: 4 additions & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1 +1,5 @@
-e .

# Dependencies not on PyPI must be listed here as well as in setup.py
git+https://github.com/alphagov/[email protected]#egg=Flask-FeatureFlags==1.0

2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
packages=find_packages(),
include_package_data=True,
install_requires=[
'Flask-FeatureFlags==0.6',
'Flask-FeatureFlags==1.0',
'Flask-Script==2.0.6',
'Flask-WTF==0.14.2',
'Flask==0.10.1',
Expand Down

0 comments on commit 286aea6

Please sign in to comment.