Skip to content

Commit 211ce99

Browse files
authored
ci: Fix failing builds (#14)
1 parent 71166f4 commit 211ce99

File tree

1 file changed

+9
-5
lines changed

1 file changed

+9
-5
lines changed

.circleci/config.yml

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,20 +8,20 @@ workflows:
88
jobs:
99
- test-linux:
1010
name: Python 3.7
11-
docker-image: cimg/python:3.7
11+
docker-image: python:3.7-slim
1212
skip-contract-tests: true
1313
- test-linux:
1414
name: Python 3.8
15-
docker-image: cimg/python:3.8
15+
docker-image: python:3.8-slim
1616
- test-linux:
1717
name: Python 3.9
18-
docker-image: cimg/python:3.9
18+
docker-image: python:3.9-slim
1919
- test-linux:
2020
name: Python 3.10
21-
docker-image: cimg/python:3.10
21+
docker-image: python:3.10-slim
2222
- test-linux:
2323
name: Python 3.11
24-
docker-image: cimg/python:3.11
24+
docker-image: python:3.11-slim
2525
- test-windows:
2626
name: Windows Python 3
2727

@@ -38,6 +38,9 @@ jobs:
3838
- image: <<parameters.docker-image>>
3939
steps:
4040
- checkout
41+
- run:
42+
name: install os prerequisities
43+
command: apt-get update && apt-get install -y make
4144
- run:
4245
name: install requirements
4346
command: |
@@ -85,6 +88,7 @@ jobs:
8588
name: install requirements
8689
command: |
8790
python --version
91+
pip install setuptools
8892
pip install -r test-requirements.txt
8993
python setup.py install
9094
- run:

0 commit comments

Comments
 (0)