Skip to content

Commit

Permalink
Merge pull request #463 from bowlofeggs/pyramid_min_version
Browse files Browse the repository at this point in the history
Configure setup.py to require a minimum version of Pyramid at 1.7.
  • Loading branch information
Natim committed Oct 26, 2017
2 parents e5f40b6 + 05d5dc2 commit e0323c2
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 @@ -9,7 +9,7 @@
with open(os.path.join(here, 'CHANGES.txt')) as f:
CHANGES = f.read()

requires = ['pyramid', 'simplejson']
requires = ['pyramid>=1.7', 'simplejson']

entry_points = ""
package_data = {}
Expand Down

0 comments on commit e0323c2

Please sign in to comment.