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.13.7
- image: python:3.13.8

Choose a reason for hiding this comment

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

medium

For better performance and reliability on CircleCI, it's recommended to use CircleCI's pre-built convenience images (e.g., cimg/python) instead of official Docker Hub images. These are optimized for the CI environment and include common tools.

Additionally, using a floating tag like 3.13 instead of pinning to a specific patch version (3.13.8) will ensure your pipeline automatically uses the latest patch release. This approach helps in receiving security updates more quickly and reduces the number of small dependency update PRs.

      - image: cimg/python:3.13

resource_class: small

workflows:
Expand Down