File tree Expand file tree Collapse file tree 1 file changed +9
-5
lines changed Expand file tree Collapse file tree 1 file changed +9
-5
lines changed Original file line number Diff line number Diff line change @@ -8,20 +8,20 @@ workflows:
8
8
jobs :
9
9
- test-linux :
10
10
name : Python 3.7
11
- docker-image : cimg/ python:3.7
11
+ docker-image : python:3.7-slim
12
12
skip-contract-tests : true
13
13
- test-linux :
14
14
name : Python 3.8
15
- docker-image : cimg/ python:3.8
15
+ docker-image : python:3.8-slim
16
16
- test-linux :
17
17
name : Python 3.9
18
- docker-image : cimg/ python:3.9
18
+ docker-image : python:3.9-slim
19
19
- test-linux :
20
20
name : Python 3.10
21
- docker-image : cimg/ python:3.10
21
+ docker-image : python:3.10-slim
22
22
- test-linux :
23
23
name : Python 3.11
24
- docker-image : cimg/ python:3.11
24
+ docker-image : python:3.11-slim
25
25
- test-windows :
26
26
name : Windows Python 3
27
27
38
38
- image : <<parameters.docker-image>>
39
39
steps :
40
40
- checkout
41
+ - run :
42
+ name : install os prerequisities
43
+ command : apt-get update && apt-get install -y make
41
44
- run :
42
45
name : install requirements
43
46
command : |
85
88
name : install requirements
86
89
command : |
87
90
python --version
91
+ pip install setuptools
88
92
pip install -r test-requirements.txt
89
93
python setup.py install
90
94
- run :
You can’t perform that action at this time.
0 commit comments