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.0
- image: python:3.14.1

Choose a reason for hiding this comment

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

critical

The Docker image python:3.14.1 appears to be invalid. Python version 3.14 has not been released, and this tag does not exist on the official Python Docker Hub repository. This will cause any CI job using this executor to fail. It seems the previous version 3.14.0 was also incorrect. Please replace this with a valid Python image tag. For instance, if you intend to use the latest Python 3.12, the tag would be python:3.12.4.

resource_class: small

workflows:
Expand Down