Skip to content

Commit

Permalink
Allow Werkzeug versions other than 0.11.13
Browse files Browse the repository at this point in the history
Newer version of flask require newer versions of Werkzeug.

The warning message is as follows:

```
flask 1.0.2 has requirement Werkzeug>=0.14, but you'll have werkzeug 0.11.3 which is incompatible.
tilestache 1.51.12 has requirement Werkzeug==0.11.13, but you'll have werkzeug 0.11.3 which is incompatible.
```
  • Loading branch information
invisiblefunnel committed Sep 24, 2018
1 parent 2b89509 commit d4367e9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ def is_installed(name):
return False


requires = ['ModestMaps >=1.3.0','simplejson', 'Werkzeug == 0.11.13', 'Pillow']
requires = ['ModestMaps >=1.3.0','simplejson', 'Werkzeug', 'Pillow']


setup(name='TileStache',
Expand Down

0 comments on commit d4367e9

Please sign in to comment.