Skip to content

Commit c6e2bf3

Browse files
author
rocky
committed
CircleCI test with 3.13 or greater
1 parent 2c74c16 commit c6e2bf3

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.circleci/config.yml

Lines changed: 5 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: circleci/python:3.10
15+
- image: cimg/python:3.13
1616
steps:
1717
# Machine Setup
1818
# If you break your build into multiple jobs with workflows, you will probably want to do the parts of this that are relevant in each
@@ -23,10 +23,10 @@ jobs:
2323
# 'See docs on artifact collection here https://circleci.com/docs/2.0/artifacts/'
2424
- run: mkdir -p $CIRCLE_ARTIFACTS $CIRCLE_TEST_REPORTS
2525
# This is based on your 1.0 configuration file or project settings
26-
- run: sudo /usr/local/bin/python -m pip install --upgrade pip
27-
- run: sudo pip install -e .
28-
- run: sudo pip install -r requirements-dev.txt
26+
- run: pip install --upgrade pip
27+
- run: pip install -e .
28+
- run: pip install -r requirements-dev.txt
2929

3030

3131
# Test
32-
- run: sudo python ./setup.py develop && make check-full
32+
- run: python ./setup.py develop && make check-full

0 commit comments

Comments
 (0)