Skip to content

Commit dd5f763

Browse files
authored
backport to 3.10 (#29)
Co-authored-by: Bryn Lloyd <12702862+dyollb@users.noreply.github.com>
1 parent 7bc5fd7 commit dd5f763

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

.github/workflows/scheduled-tests.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,8 @@ jobs:
2121
python-version: ["3.11"]
2222
# Add Python 3.12-3.14 only for Ubuntu
2323
include:
24+
- os: ubuntu-latest
25+
python-version: "3.10"
2426
- os: ubuntu-latest
2527
python-version: "3.12"
2628
- os: ubuntu-latest

pyproject.toml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ name = "pytest-isolated"
77
dynamic = ["version"]
88
description = "Run marked pytest tests in grouped subprocesses (cross-platform)."
99
readme = "README.md"
10-
requires-python = ">=3.11"
10+
requires-python = ">=3.10"
1111
dependencies = ["pytest>=7.0"]
1212
license = "MIT"
1313
authors = [
@@ -33,6 +33,7 @@ classifiers = [
3333
"Operating System :: POSIX :: Linux",
3434
"Operating System :: MacOS",
3535
"Programming Language :: Python :: 3",
36+
"Programming Language :: Python :: 3.10",
3637
"Programming Language :: Python :: 3.11",
3738
"Programming Language :: Python :: 3.12",
3839
"Programming Language :: Python :: 3.13",
@@ -76,7 +77,7 @@ pytest_isolated = ["py.typed"]
7677

7778
[tool.ruff]
7879
line-length = 88
79-
target-version = "py311"
80+
target-version = "py310"
8081

8182
[tool.ruff.lint]
8283
select = [

0 commit comments

Comments
 (0)