Skip to content

Commit 6a5588f

Browse files
committed
Simpler dependency management
1 parent 4c5b840 commit 6a5588f

File tree

3 files changed

+1
-8
lines changed

3 files changed

+1
-8
lines changed

requirements.txt

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,2 @@
1-
# If you change this file, don't forget to update tox.ini and setup.py also.
2-
coverage >= 4.0b2
3-
Django >= 1.4
4-
six >= 1.4.0
1+
# To run tests, we just need tox.
52
tox >= 1.8

setup.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@
1111
url='https://github.com/nedbat/django_coverage_plugin',
1212
packages=['django_coverage_plugin'],
1313
install_requires=[
14-
# If you change this, update tox.ini and requirements.txt also.
1514
'Django >= 1.4',
1615
'coverage >= 4.0b2',
1716
'six >= 1.4.0',

tox.ini

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,15 +13,12 @@
1313
envlist = py{27,34}-django{14,15,16,17,18},check
1414

1515
[testenv]
16-
# Keep these dependencies in sync with the requirements.txt file.
1716
deps =
1817
django14: Django >=1.4, <1.5
1918
django15: Django >=1.5, <1.6
2019
django16: Django >=1.6, <1.7
2120
django17: Django >=1.7, <1.8
2221
django18: Django >=1.8, <1.9
23-
six >= 1.4.0
24-
coverage >= 4.0b2
2522

2623
commands =
2724
{envpython} -c "import tests.banner"

0 commit comments

Comments
 (0)