From 47d23ac408de3c654e69410c0ad3a392d6f6708e Mon Sep 17 00:00:00 2001 From: Fedor Borshev Date: Wed, 24 Jun 2020 16:36:48 +0300 Subject: [PATCH] Removed nose from setup.py (#10) --- .travis.yml | 3 +-- dev-requirements.txt | 3 +++ setup.py | 3 --- 3 files changed, 4 insertions(+), 5 deletions(-) create mode 100644 dev-requirements.txt diff --git a/.travis.yml b/.travis.yml index fee8a58..8a7d245 100644 --- a/.travis.yml +++ b/.travis.yml @@ -15,8 +15,7 @@ env: install: - pip install Django==$DJANGO - python setup.py install - - pip install coverage - - pip install mock + - pip install -r dev-requirements.txt script: coverage run test.py diff --git a/dev-requirements.txt b/dev-requirements.txt new file mode 100644 index 0000000..dca5d48 --- /dev/null +++ b/dev-requirements.txt @@ -0,0 +1,3 @@ +nose==1.3.7 +coverage==5.1 +mock \ No newline at end of file diff --git a/setup.py b/setup.py index dda0a01..78418e1 100755 --- a/setup.py +++ b/setup.py @@ -10,9 +10,6 @@ 'pytz', 'django-suit', ], - setup_requires=[ - 'nose>=1.0', - ], url='https://github.com/f213/django-suit-daterange-filter', author='Fedor Borshev', author_email='f@f213.in',