Skip to content
Open
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
Upgrade CircleCI Python orb to version 4.0.0
Updated Python orb version and commented out executor configuration.
  • Loading branch information
cclauss authored Jan 22, 2026
commit 2707f18105ba1cfa92cf544e504c7e9e9f4250c8
14 changes: 7 additions & 7 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@

version: '2.1'
orbs:
python: circleci/python@3.3.0
python: circleci/python@4.0.0

jobs:
pre-commit:
executor:
name: python/default
tag: "3.14"
# executor:
# name: python/default
# tag: "3.14"
steps:
- checkout
- python/install-packages:
Expand All @@ -18,9 +18,9 @@ jobs:
uvx pre-commit run --all-files --show-diff-on-failure

pytest:
executor:
name: python/default
tag: "3.14"
# executor:
# name: python/default
# tag: "3.14"
steps:
- checkout
- python/install-packages:
Expand Down