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
22 changes: 16 additions & 6 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,19 @@ executors:
- image: python:3.12.13
resource_class: small

python313:
docker:
- image: python:3.13.12
resource_class: small

python314:
docker:
- image: python:3.14.3
resource_class: small

python-integration:
docker:
- image: python:3.12.13
- image: python:3.14.3
environment:
GOOGLE_APPLICATION_CREDENTIALS: /key.json
resource_class: small
Expand Down Expand Up @@ -54,7 +64,7 @@ commands:

jobs:
build-rest:
executor: python312
executor: python314
steps:
- poetry/install:
# renovate: datasource=pypi depName=poetry
Expand All @@ -67,7 +77,7 @@ jobs:
# gcloud-rest builds in a matrix (eg. without having `cwd` be a complicated
# path which breaks the tag filter).
poetry-publish-workspace:
executor: python312
executor: python314
parameters:
basedir:
enum: [/rest, /root/project]
Expand Down Expand Up @@ -95,7 +105,7 @@ jobs:
working_directory: <<parameters.basedir>>/<<parameters.cwd>>

docs:
executor: python312
executor: python314
steps:
- run: pip install sphinx sphinx-autoapi
- checkout
Expand Down Expand Up @@ -184,7 +194,7 @@ workflows:
alias: test-unit-aio
parameters:
cwd: [auth, bigquery, datastore, kms, pubsub, storage, taskqueue]
executor: [python310, python311, python312]
executor: [python310, python311, python312, python313, python314]
filters:
tags:
only: /.*/
Expand Down Expand Up @@ -223,7 +233,7 @@ workflows:
alias: test-unit-rest
parameters:
cwd: [/rest/auth, /rest/bigquery, /rest/datastore, /rest/kms, /rest/pubsub, /rest/storage, /rest/taskqueue]
executor: [python310, python311, python312]
executor: [python310, python311, python312, python313, python314]
filters:
tags:
only: /.*/
Expand Down