Skip to content

Commit f5db79f

Browse files
committed
Use right version of Python on CircleCI?
1 parent c46edbd commit f5db79f

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed

.circleci/config.yml

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
CIRCLE_TEST_REPORTS: /tmp/circleci-test-results
1313
COMPILE: --compile
1414
docker:
15-
- image: cimg/python:3.12
15+
- image: cimg/python:3.13
1616
steps:
1717
- checkout
1818
- restore_cache:
@@ -21,11 +21,10 @@ jobs:
2121
- v1-dep-master-
2222
- v1-dep-
2323
- run: sudo apt update
24-
- run: sudo apt install python3-pip
2524
# Until the next xdis release...
26-
- run: sudo pip install git+https://github.com/rocky/python-xdis#egg=xdis
27-
- run: sudo pip install -e .
28-
- run: sudo pip install pytest
25+
- run: pip install git+https://github.com/rocky/python-xdis#egg=xdis
26+
- run: pip install -e .
27+
- run: pip install pytest
2928
- save_cache:
3029
key: v1-dep-{{ .Branch }}-{{ epoch }}
3130
paths:

0 commit comments

Comments
 (0)