Skip to content

Commit

Permalink
Merge pull request #414 from alphagov/update-flask-featureflags
Browse files Browse the repository at this point in the history
Add dependency on Flask-FeatureFlags v1.0
  • Loading branch information
galund authored Jul 2, 2018
2 parents 876e452 + dc16012 commit a6f5ac0
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 2 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@

Records breaking changes from major version bumps

## 40.0.0

PR [414](https://github.com/alphagov/digitalmarketplace-utils/pull/414)

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.6.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 a6f5ac0

Please sign in to comment.