Skip to content
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
CircleCI: Test on current Python
  • Loading branch information
cclauss authored Jan 1, 2026
commit 4db32f4025c81aa59c6a9d33733b9a3e5108f28d
18 changes: 8 additions & 10 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
version: 2.0
version: 2.1

build_and_test: &build_and_test_steps
- checkout
# Do not use `sudo pip`
# pipx is already installed but `pipx list` is empty
# pipx is already installed, but `pipx list` is empty
- run: python --version ; pip --version ; pipx --version ; pwd ; ls -l
- run: pip install pytest -r requirements.txt
- run: pip install --editable .
Expand All @@ -13,24 +13,22 @@ build_and_test: &build_and_test_steps
jobs:
StyleCheck:
docker:
- image: cimg/python:3.11
- image: cimg/python:3.14
steps:
- checkout
- run: python --version ; pip --version ; pwd ; ls -l
- run: pip install black codespell ruff
- run: codespell -L queenland,uint,assertin
- run: ruff check
- run: black . --check
- run: python --version ; pip --version ; pipx --version ; pwd ; ls -l
- run: pipx run codespell -L queenland,uint,assertin
- run: pipx run ruff check
- run: pipx run black . --check


Python3:
docker:
- image: cimg/python:3.11
- image: cimg/python:3.14
steps: *build_and_test_steps


workflows:
version: 2
build:
jobs:
- StyleCheck
Expand Down