Skip to content

Commit

Permalink
Fixed dependency versions in setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
jcohen02 committed Sep 4, 2019
1 parent d0eb7dc commit dcfbc54
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,10 @@
],
include_package_data=True,
install_requires=[
"Django>=1.11.0",
"djangorestframework>=3.9.1",
"Django<2.0.0;python_version=='2.7'",
"Django>=2.0.0;python_version>='3.5'",
"djangorestframework==3.9.3;python_version=='2.7'",
"djangorestframework>=3.9.3;python_version>='3.5'",
"shortuuid>=0.5.0",
"requests>=2.20.1"
],
Expand Down

0 comments on commit dcfbc54

Please sign in to comment.