Skip to content

Commit 5f5e395

Browse files
committed
Oops, don't actually try to support Python 3.15 yet
Signed-off-by: Jussi Kukkonen <jkukkonen@google.com>
1 parent 0de1e11 commit 5f5e395

File tree

3 files changed

+3
-5
lines changed

3 files changed

+3
-5
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,12 +27,11 @@ jobs:
2727
- { py: "3.12", os: "ubuntu-latest" }
2828
- { py: "3.13", os: "ubuntu-latest" }
2929
- { py: "3.14", os: "ubuntu-latest" }
30-
- { py: "3.15", os: "ubuntu-latest" }
3130
# NOTE: We only test Windows and macOS on the latest Python;
3231
# these primarily exist to ensure that we don't accidentally
3332
# introduce Linux-isms into the development tooling.
34-
- { py: "3.15", os: "windows-latest" }
35-
- { py: "3.15", os: "macos-latest" }
33+
- { py: "3.14", os: "windows-latest" }
34+
- { py: "3.14", os: "macos-latest" }
3635
runs-on: ${{ matrix.conf.os }}
3736
steps:
3837
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1

.github/workflows/requirements.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
SIGSTORE_REF: ${{ inputs.ref }}
2626
strategy:
2727
matrix:
28-
python_version: ["3.10", "3.11", "3.12", "3.13", "3.14", "3.15"]
28+
python_version: ["3.10", "3.11", "3.12", "3.13", "3.14"]
2929

3030
steps:
3131
- name: Populate reference from context

pyproject.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@ classifiers = [
2020
"Programming Language :: Python :: 3.12",
2121
"Programming Language :: Python :: 3.13",
2222
"Programming Language :: Python :: 3.14",
23-
"Programming Language :: Python :: 3.15",
2423
"Development Status :: 5 - Production/Stable",
2524
"Intended Audience :: Developers",
2625
"Topic :: Security",

0 commit comments

Comments
 (0)