Skip to content

Commit 4b1a5f3

Browse files
fix: explicitly declare Python 3.13 support (#408)
* fix: explicitly delare Python 3.13 support * add constraints * πŸ¦‰ Updates from OwlBot post-processor See https://github.com/googleapis/repo-automation-bots/blob/main/packages/owl-bot/README.md * πŸ¦‰ Updates from OwlBot post-processor See https://github.com/googleapis/repo-automation-bots/blob/main/packages/owl-bot/README.md * remove .kokoro/samples since there are no samples --------- Co-authored-by: Owl Bot <gcf-owl-bot[bot]@users.noreply.github.com>
1 parent cc29cc3 commit 4b1a5f3

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

51 files changed

+21
-620
lines changed

β€Ž.github/workflows/unittest.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,13 @@ on:
55
name: unittest
66
jobs:
77
unit:
8-
runs-on: ubuntu-20.04
8+
# TODO(https://github.com/googleapis/gapic-generator-python/issues/2303): use `ubuntu-latest` once this bug is fixed.
9+
# Use ubuntu-22.04 until Python 3.7 is removed from the test matrix
10+
# https://docs.github.com/en/actions/using-github-hosted-runners/using-github-hosted-runners/about-github-hosted-runners#standard-github-hosted-runners-for-public-repositories
11+
runs-on: ubuntu-22.04
912
strategy:
1013
matrix:
11-
python: ['3.6', '3.7', '3.8', '3.9', '3.10', '3.11', '3.12']
14+
python: ['3.7', '3.8', '3.9', '3.10', '3.11', '3.12', '3.13']
1215
steps:
1316
- name: Checkout
1417
uses: actions/checkout@v4

β€Ž.kokoro/samples/lint/common.cfg

Lines changed: 0 additions & 34 deletions
This file was deleted.

β€Ž.kokoro/samples/lint/continuous.cfg

Lines changed: 0 additions & 6 deletions
This file was deleted.

β€Ž.kokoro/samples/lint/periodic.cfg

Lines changed: 0 additions & 6 deletions
This file was deleted.

β€Ž.kokoro/samples/lint/presubmit.cfg

Lines changed: 0 additions & 6 deletions
This file was deleted.

β€Ž.kokoro/samples/python3.10/common.cfg

Lines changed: 0 additions & 40 deletions
This file was deleted.

β€Ž.kokoro/samples/python3.10/continuous.cfg

Lines changed: 0 additions & 6 deletions
This file was deleted.

β€Ž.kokoro/samples/python3.10/periodic-head.cfg

Lines changed: 0 additions & 11 deletions
This file was deleted.

β€Ž.kokoro/samples/python3.10/periodic.cfg

Lines changed: 0 additions & 6 deletions
This file was deleted.

β€Ž.kokoro/samples/python3.10/presubmit.cfg

Lines changed: 0 additions & 6 deletions
This file was deleted.

β€Ž.kokoro/samples/python3.11/common.cfg

Lines changed: 0 additions & 40 deletions
This file was deleted.

β€Ž.kokoro/samples/python3.11/continuous.cfg

Lines changed: 0 additions & 6 deletions
This file was deleted.

β€Ž.kokoro/samples/python3.11/periodic-head.cfg

Lines changed: 0 additions & 11 deletions
This file was deleted.

β€Ž.kokoro/samples/python3.11/periodic.cfg

Lines changed: 0 additions & 6 deletions
This file was deleted.

β€Ž.kokoro/samples/python3.11/presubmit.cfg

Lines changed: 0 additions & 6 deletions
This file was deleted.

β€Ž.kokoro/samples/python3.12/common.cfg

Lines changed: 0 additions & 40 deletions
This file was deleted.

β€Ž.kokoro/samples/python3.12/continuous.cfg

Lines changed: 0 additions & 6 deletions
This file was deleted.

β€Ž.kokoro/samples/python3.12/periodic-head.cfg

Lines changed: 0 additions & 11 deletions
This file was deleted.

β€Ž.kokoro/samples/python3.12/periodic.cfg

Lines changed: 0 additions & 6 deletions
This file was deleted.

β€Ž.kokoro/samples/python3.12/presubmit.cfg

Lines changed: 0 additions & 6 deletions
This file was deleted.

β€Ž.kokoro/samples/python3.13/common.cfg

Lines changed: 0 additions & 40 deletions
This file was deleted.

β€Ž.kokoro/samples/python3.13/continuous.cfg

Lines changed: 0 additions & 6 deletions
This file was deleted.

β€Ž.kokoro/samples/python3.13/periodic-head.cfg

Lines changed: 0 additions & 11 deletions
This file was deleted.

β€Ž.kokoro/samples/python3.13/periodic.cfg

Lines changed: 0 additions & 6 deletions
This file was deleted.

β€Ž.kokoro/samples/python3.13/presubmit.cfg

Lines changed: 0 additions & 6 deletions
This file was deleted.

0 commit comments

Comments
Β (0)