Skip to content

Commit

Permalink
Turn on OSS CI for 3.12 and add 3.12 to classifiers
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 672951709
  • Loading branch information
frigus02 authored and copybara-github committed Sep 10, 2024
1 parent 6f7a3aa commit 7314dea
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 8 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
platform:
- manylinux_2_28_x86_64
- manylinux_2_28_aarch64
pyver: ['cp38-cp38', 'cp39-cp39', 'cp310-cp310', 'cp311-cp311']
pyver: ['cp38-cp38', 'cp39-cp39', 'cp310-cp310', 'cp311-cp311', 'cp312-cp312']
steps:
- uses: actions/checkout@v4
with:
Expand Down Expand Up @@ -57,7 +57,7 @@ jobs:
runs-on: macos-13
strategy:
matrix:
python_version: ['3.8', '3.9', '3.10', '3.11']
python_version: ['3.8', '3.9', '3.10', '3.11', '3.12']
steps:
- uses: actions/checkout@v4
with:
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,18 +15,18 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-20.04]
python-version: ['3.8', '3.9', '3.10', '3.11']
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12']
experimental: [false]
include:
- os: macos-latest
python-version: '3.11'
python-version: '3.12'
experimental: false
- os: windows-latest
python-version: '3.11'
experimental: true
- os: ubuntu-20.04
python-version: '3.12'
experimental: true
# - os: ubuntu-20.04
# python-version: '3.13'
# experimental: true
steps:
- uses: actions/checkout@v4
with:
Expand All @@ -51,6 +51,6 @@ jobs:

- name: Run Tests
env:
LINT: ${{ runner.os == 'Linux' && matrix.python-version == '3.11' }}
LINT: ${{ runner.os == 'Linux' && matrix.python-version == '3.12' }}
run: python build_scripts/ci_script.py
continue-on-error: ${{ matrix.experimental }}
1 change: 1 addition & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ classifiers =
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3.12
Programming Language :: Python :: Implementation :: CPython
Topic :: Software Development

Expand Down

0 comments on commit 7314dea

Please sign in to comment.