Skip to content

Commit 0626fb2

Browse files
committed
deprecate dev extra in favor of requirements.txt in tests dir
1 parent ad449d8 commit 0626fb2

File tree

3 files changed

+5
-9
lines changed

3 files changed

+5
-9
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ ccend = $(shell echo "\033[0m")
1616
# Helpful link to install development dependencies declared in setup.py
1717
define dev_deps_message
1818
$(ccred)You can install this and other development dependencies with$(newline)$(ccend)\
19-
$(ccblue) pip install -e .[dev]$(newline)$(ccend)
19+
$(ccblue) pip install -e . && pip install -r tests/requirements.txt$(newline)$(ccend)
2020
endef
2121

2222
# variables

setup.py

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -371,14 +371,6 @@ def run(self):
371371
),
372372
],
373373
},
374-
extras_require={
375-
'dev': [
376-
'check-manifest',
377-
'flake8>=3.5',
378-
'coverage>=4.5',
379-
'urllib3>=1.24.3'
380-
],
381-
},
382374

383375
# because we need to open() the adapters manifest, we aren't zip-safe
384376
zip_safe=False,

tests/requirements.txt

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
check-manifest
2+
flake8>=3.5
3+
coverage>=4.5
4+
urllib3>=1.24.3

0 commit comments

Comments
 (0)