Skip to content

Commit

Permalink
Relax dependencies when installing via setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
ljvmiranda921 committed May 18, 2019
1 parent 66b3cf1 commit f3be69e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ include LICENSE
include README.md
include requirements.txt
include requirements-dev.txt
incldue requirements.in

recursive-include tests *
recursive-exclude * __pycache__
Expand Down
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("README.md", encoding="utf8") as readme_file:
readme = readme_file.read()

with open("requirements.txt") as f:
with open("requirements.in") as f:
requirements = f.read().splitlines()

with open("requirements-dev.txt") as f:
Expand Down

0 comments on commit f3be69e

Please sign in to comment.