Skip to content
Merged
Changes from all commits
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
2 changes: 1 addition & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ orbs:
executors:
python:
docker:
- image: python:3.14.1
- image: python:3.14.2

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

critical

The Docker image tag python:3.14.2 appears to be invalid. The Python language does not have a version 3.14 (the latest stable version is 3.12.x). If you are using the official python image from Docker Hub, this tag does not exist, and using it will cause the CI pipeline to fail.

Please verify the correct image tag. If the intention was to use a recent version of Python 3.12, a valid tag would be python:3.12.4, for example.

      - image: python:3.12.4

resource_class: small

workflows:
Expand Down