File tree 4 files changed +13
-8
lines changed
4 files changed +13
-8
lines changed Original file line number Diff line number Diff line change @@ -17,10 +17,8 @@ matrix:
17
17
os : osx
18
18
osx_image : xcode10.2
19
19
language : shell
20
- before_install :
21
- - make build
22
20
install :
23
- - pip3 install dist/*.whl
21
+ - make install
24
22
script :
25
23
- make lint
26
24
- make tests
Original file line number Diff line number Diff line change 13
13
@${PYTHON} -m flake8 ${CQC_DIR} ${EXAMPLES} ${TESTS}
14
14
15
15
python-deps :
16
- @cat requirements.txt | xargs -n 1 -L 1 $(PIP ) install
16
+ @${PIP} install -r requirements.txt
17
+
18
+ test-deps :
19
+ @${PIP} install -r test_requirements.txt
17
20
18
21
_verified :
19
22
@echo " CQC-Python is verified!"
23
26
24
27
verify : clean python-deps lint tests _verified
25
28
29
+ install : test-deps build
30
+ @${PIP} install dist/* whl
31
+
26
32
_remove_build :
27
33
@rm -f -r build
28
34
Original file line number Diff line number Diff line change 1
- numpy >= 1.14.0
2
- bitstring >= 3.1.5
3
- flake8 >= 3.6.0
4
- twisted >= 18.7.0
1
+ numpy >= 1.14.0 ,< 1.18.0
2
+ bitstring >= 3.1.5 ,< 4.0.0
3
+ twisted >= 19.7.0 ,< 20.0.0
5
4
anytree >= 2.7.2 ,< 3.0.0
Original file line number Diff line number Diff line change
1
+ flake8>=3.6.0,<4.0.0
2
+ pytest>=5.2.1,<6.0.0
You can’t perform that action at this time.
0 commit comments