Skip to content

Commit 88a87ee

Browse files
committed
Maintain dev/prod parity by standardizing on Python 3.13
- Revert noxfile.py back to Python 3.13 to match local development environment - Update GitHub Actions matrix to use Python 3.13 instead of older versions - Ensures consistent behavior between local development and CI/CD pipeline - All nox sessions (test, lint) now work consistently in both environments
1 parent e7aff82 commit 88a87ee

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/python-build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
runs-on: ubuntu-latest
2121
strategy:
2222
matrix:
23-
python-version: ["3.10", "3.11", "3.12"]
23+
python-version: ["3.13"]
2424

2525
services:
2626
docker:

python/noxfile.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@
66

77
import nox
88

9-
# Python versions to test against (GitHub Actions supports these)
10-
PYTHON_VERSIONS = ["3.10", "3.11", "3.12"]
9+
# Python versions to test against
10+
PYTHON_VERSIONS = ["3.13"]
1111
PROJECT_ROOT = Path(__file__).parent
1212
SRC_DIR = PROJECT_ROOT / "src"
1313
TESTS_DIR = PROJECT_ROOT / "tests"

0 commit comments

Comments
 (0)