Skip to content

Commit 02dc45f

Browse files
authored
INTPYTHON-705 Add 3.14 support (#211)
1 parent d76d53f commit 02dc45f

File tree

3 files changed

+8
-18
lines changed

3 files changed

+8
-18
lines changed

.github/workflows/test-python.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ defaults:
1515

1616
env:
1717
MIN_PYTHON: "3.9"
18-
MIN_MONGODB: "4.0"
18+
MIN_MONGODB: "4.2"
1919
MAX_MONGODB: "8.0"
2020

2121
jobs:
@@ -41,7 +41,7 @@ jobs:
4141
strategy:
4242
matrix:
4343
os: ["ubuntu-latest", "macos-latest", "windows-latest"]
44-
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
44+
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13", "3.14", "pypy-3.10"]
4545
fail-fast: false
4646
name: CPython ${{ matrix.python-version }}-${{ matrix.os }}
4747
steps:

.github/workflows/zizmor.yml

Lines changed: 4 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
name: GitHub Actions Security Analysis with zizmor
1+
name: GitHub Actions Security Analysis with zizmor 🌈
22

33
on:
44
push:
5-
branches: ["main"]
5+
branches: ["master"]
66
pull_request:
77
branches: ["**"]
88

@@ -17,16 +17,5 @@ jobs:
1717
uses: actions/checkout@v4
1818
with:
1919
persist-credentials: false
20-
- name: Setup Rust
21-
uses: actions-rust-lang/setup-rust-toolchain@fb51252c7ba57d633bc668f941da052e410add48 # v1
22-
- name: Get zizmor
23-
run: cargo install zizmor
24-
- name: Run zizmor
25-
run: zizmor --format sarif . > results.sarif
26-
env:
27-
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
28-
- name: Upload SARIF file
29-
uses: github/codeql-action/upload-sarif@d6bbdef45e766d081b84a2def353b0055f728d3e # v3
30-
with:
31-
sarif_file: results.sarif
32-
category: zizmor
20+
- name: Run zizmor 🌈
21+
uses: zizmorcore/zizmor-action@87e33752ad17c7c7fc16fe27c858900c59b18d77

pyproject.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,13 +18,14 @@ classifiers = [
1818
"Intended Audience :: Developers",
1919
"License :: OSI Approved :: BSD License",
2020
"Operating System :: OS Independent",
21-
"Programming Language :: Python :: 3.9",
2221
"Programming Language :: Python :: Implementation :: CPython",
2322
"Programming Language :: Python :: Implementation :: PyPy",
23+
"Programming Language :: Python :: 3.9",
2424
"Programming Language :: Python :: 3.10",
2525
"Programming Language :: Python :: 3.11",
2626
"Programming Language :: Python :: 3.12",
2727
"Programming Language :: Python :: 3.13",
28+
"Programming Language :: Python :: 3.14",
2829
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
2930
"Topic :: Software Development :: Libraries :: Python Modules",
3031
]

0 commit comments

Comments
 (0)