Skip to content

Commit bf30cb3

Browse files
Add Python 3.14 to test matrix (#300)
1 parent c39612a commit bf30cb3

4 files changed

Lines changed: 5 additions & 2 deletions

File tree

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
fail-fast: false
2727
max-parallel: 4
2828
matrix:
29-
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
29+
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13", "3.14"]
3030
steps:
3131
- uses: actions/checkout@v4
3232
- name: Set up Python ${{ matrix.python-version }}

flake.nix

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
pkgsUnstable = nixpkgsUnstable.legacyPackages.${system};
1414
in {
1515
packages = flakeUtils.lib.flattenTree {
16+
python314 = pkgs.python314;
1617
python313 = pkgs.python313;
1718
python312 = pkgs.python312;
1819
python311 = pkgs.python311;
@@ -23,6 +24,7 @@
2324
};
2425
devShell = pkgs.mkShell {
2526
buildInputs = with self.packages.${system}; [
27+
python314
2628
python313
2729
python312
2830
python311

noxfile.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
nox.options.keywords = "test + mypy"
66

77

8-
@nox.session(python=["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"])
8+
@nox.session(python=["3.8", "3.9", "3.10", "3.11", "3.12", "3.13", "3.14"])
99
def test(session):
1010
deps = ["pytest", "pytest-asyncio", "pytest-cov", "trio", "starlette", "flask"]
1111
session.install("--upgrade", *deps)

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@
2929
"Programming Language :: Python :: 3.11",
3030
"Programming Language :: Python :: 3.12",
3131
"Programming Language :: Python :: 3.13",
32+
"Programming Language :: Python :: 3.14",
3233
],
3334
project_urls={
3435
"GitHub": "https://github.com/lundberg/respx",

0 commit comments

Comments
 (0)