Skip to content

Commit 752d282

Browse files
shenxianpengphilpep
authored andcommitted
chore: drop Python 3.9, add 3.12/3.13/3.14 support
1 parent 5c05334 commit 752d282

2 files changed

Lines changed: 5 additions & 3 deletions

File tree

.github/workflows/tox.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
strategy:
2525
fail-fast: false
2626
matrix:
27-
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
27+
python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"]
2828
steps:
2929
- uses: actions/checkout@v6
3030
- name: Set up Python ${{ matrix.python-version }}

pyproject.toml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ build-backend = "hatchling.build"
55
[project]
66
name = "pytest-testinfra"
77
description = "Test infrastructures"
8-
requires-python = ">=3.9"
8+
requires-python = ">=3.10"
99
dynamic = ["version"]
1010
readme = "README.rst"
1111
license-files = ["LICENSE"]
@@ -21,9 +21,11 @@ classifiers = [
2121
"Programming Language :: Python",
2222
"Programming Language :: Python :: 3",
2323
"Programming Language :: Python :: 3 :: Only",
24-
"Programming Language :: Python :: 3.9",
2524
"Programming Language :: Python :: 3.10",
2625
"Programming Language :: Python :: 3.11",
26+
"Programming Language :: Python :: 3.12",
27+
"Programming Language :: Python :: 3.13",
28+
"Programming Language :: Python :: 3.14",
2729
"Topic :: Software Development :: Testing",
2830
"Topic :: System :: Systems Administration",
2931
"Framework :: Pytest",

0 commit comments

Comments
 (0)