Skip to content

Commit 4db32f4

Browse files
authored
CircleCI: Test on current Python
1 parent 2f0b29e commit 4db32f4

File tree

1 file changed

+8
-10
lines changed

1 file changed

+8
-10
lines changed

.circleci/config.yml

Lines changed: 8 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
version: 2.0
1+
version: 2.1
22

33
build_and_test: &build_and_test_steps
44
- checkout
55
# Do not use `sudo pip`
6-
# pipx is already installed but `pipx list` is empty
6+
# pipx is already installed, but `pipx list` is empty
77
- run: python --version ; pip --version ; pipx --version ; pwd ; ls -l
88
- run: pip install pytest -r requirements.txt
99
- run: pip install --editable .
@@ -13,24 +13,22 @@ build_and_test: &build_and_test_steps
1313
jobs:
1414
StyleCheck:
1515
docker:
16-
- image: cimg/python:3.11
16+
- image: cimg/python:3.14
1717
steps:
1818
- checkout
19-
- run: python --version ; pip --version ; pwd ; ls -l
20-
- run: pip install black codespell ruff
21-
- run: codespell -L queenland,uint,assertin
22-
- run: ruff check
23-
- run: black . --check
19+
- run: python --version ; pip --version ; pipx --version ; pwd ; ls -l
20+
- run: pipx run codespell -L queenland,uint,assertin
21+
- run: pipx run ruff check
22+
- run: pipx run black . --check
2423

2524

2625
Python3:
2726
docker:
28-
- image: cimg/python:3.11
27+
- image: cimg/python:3.14
2928
steps: *build_and_test_steps
3029

3130

3231
workflows:
33-
version: 2
3432
build:
3533
jobs:
3634
- StyleCheck

0 commit comments

Comments
 (0)