Skip to content

Commit

Permalink
Merge pull request #250 from johngian/fix-cryptography-dependency
Browse files Browse the repository at this point in the history
Setup script maintenance.
  • Loading branch information
johngian committed Jun 12, 2018
2 parents 67ab0a6 + be0c43e commit 6fe5244
Showing 1 changed file with 3 additions and 8 deletions.
11 changes: 3 additions & 8 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,14 +35,9 @@
install_requirements = [
'Django >= 1.11',
'josepy',
'requests'
'requests',
'cryptography'
]
# cryptography dropped supporting Python 3.2/3.3 at some point
if sys.version_info[:2] > (2, 7) and sys.version_info[:2] < (3, 4):
install_requirements.append('cryptography<1.9')
else:
install_requirements.append('cryptography>1.9')


setup(
name='mozilla-django-oidc',
Expand All @@ -59,7 +54,7 @@
zip_safe=False,
keywords='mozilla-django-oidc',
classifiers=[
'Development Status :: 3 - Alpha',
'Development Status :: 5 - Production/Stable',
'Framework :: Django',
'Framework :: Django :: 1.11',
'Framework :: Django :: 2.0',
Expand Down

0 comments on commit 6fe5244

Please sign in to comment.