Skip to content

Commit 2f8a310

Browse files
authored
Merge pull request #2 from NellyWhads/python_38
Support Python 3.8
2 parents f866c71 + ecbc10d commit 2f8a310

File tree

3 files changed

+11
-5
lines changed

3 files changed

+11
-5
lines changed

.github/workflows/ci.yml

+4
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,10 @@ jobs:
2121
strategy:
2222
matrix:
2323
tox_env:
24+
- py38-pytest7
25+
- py38-pytest8
26+
- py39-pytest7
27+
- py39-pytest8
2428
- py310-pytest7
2529
- py310-pytest8
2630
- py311-pytest7

pyproject.toml

+6-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "pytest-xdist-worker-stats"
3-
version = "0.1.5"
3+
version = "0.1.6"
44
description = "A pytest plugin to list worker statistics after a xdist run."
55
authors = ["Mikuláš Poul <[email protected]>"]
66
license = "MIT"
@@ -13,6 +13,8 @@ classifiers = [
1313
"Topic :: Software Development :: Testing",
1414
"Operating System :: OS Independent",
1515
"Programming Language :: Python :: 3",
16+
"Programming Language :: Python :: 3.8",
17+
"Programming Language :: Python :: 3.9",
1618
"Programming Language :: Python :: 3.10",
1719
"Programming Language :: Python :: 3.11",
1820
"Programming Language :: Python :: 3.12",
@@ -26,7 +28,7 @@ keywords = ["pytest", "xdist", "pytest-xdist"]
2628
pytest-xdist-worker-stats = "pytest_xdist_worker_stats"
2729

2830
[tool.poetry.dependencies]
29-
python = ">3.9"
31+
python = ">=3.8"
3032
pytest = ">7.3.2"
3133
pytest-xdist = "^3.3"
3234

@@ -40,7 +42,7 @@ build-backend = "poetry.core.masonry.api"
4042

4143
[tool.black]
4244
line-length = 120
43-
target_version = ['py310', 'py311', 'py312']
45+
target_version = ['py38', 'py39', 'py310', 'py311', 'py312']
4446
include = '\.pyi?$'
4547
exclude = '''
4648
(
@@ -83,7 +85,7 @@ select = [
8385
]
8486

8587
line-length = 120
86-
target-version = "py310"
88+
target-version = "py38"
8789

8890
# Never enforce...
8991
ignore = [

pytest_xdist_worker_stats/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
from .options import pytest_configure # noqa: F401
22

3-
__version__ = "0.1.2"
3+
__version__ = "0.1.6"

0 commit comments

Comments
 (0)