Skip to content

Commit

Permalink
Remove Django from requirements.txt
Browse files Browse the repository at this point in the history
Be more tox-friendly
  • Loading branch information
mpasternak committed Dec 10, 2017
1 parent a20833a commit 8487503
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
1 change: 0 additions & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,2 @@
Django
future>=0.16.0
python-dateutil>=2.6.0
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -122,8 +122,8 @@ def reqs(f):
long_description=read("README.md"),
license='MIT',
keywords='django multiseek',
install_requires=list(reqs("requirements.txt")),
tests_require=list(reqs("requirements_dev.txt")),
install_requires=["Django>=1.10"] + list(reqs("requirements.txt")),
tests_require=["Django>=1.10"] + list(reqs("requirements_dev.txt")),
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
Expand Down
3 changes: 2 additions & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,8 @@ passenv =
TRAVIS_JOB_ID
TRAVIS_BRANCH

deps =
deps =
-r{toxinidir}/requirements.txt
-r{toxinidir}/requirements_dev.txt
django111: django>=1.11.7,<1.12
django20: django>=2.0,<2.1

0 comments on commit 8487503

Please sign in to comment.