Skip to content

Commit 57f16da

Browse files
author
Axel Dahlberg
committedSep 11, 2020
Fix make test-deps
1 parent ae64d25 commit 57f16da

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed
 

‎Makefile

+4-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,10 @@ _delete_pid:
1515
lint:
1616
@${PYTHON} -m flake8 ${SIMULAQRON_DIR} ${EXAMPLES_DIR}
1717

18-
python-deps:
18+
test-deps:
19+
@${PYTHON} -m pip install -r test_requirements.txt
20+
21+
requirements python-deps:
1922
@cat requirements.txt | xargs -n 1 -L 1 $(PIP) install
2023

2124
_reset:

‎requirements.txt

-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@ numpy>=1.14.0,<2.0.0
22
scipy>=1.1.0,<2.0.0
33
twisted>=20.3.0,<21.0.0
44
networkx>=2.2,<3.0
5-
flake8>=3.6.0,<4.0.0
65
click>=7.0,<8.0
76
daemons>=1.3.0,<2.0.0
87
cqc>=3.1.0,<4.0.0

‎test_requirements.txt

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
flake8>=3.6.0,<4.0.0

0 commit comments

Comments
 (0)
Please sign in to comment.