1
1
[tool .poetry ]
2
2
name = " pytest-xdist-worker-stats"
3
- version = " 0.1.5 "
3
+ version = " 0.1.6 "
4
4
description = " A pytest plugin to list worker statistics after a xdist run."
5
5
authors = [
" Mikuláš Poul <[email protected] >" ]
6
6
license = " MIT"
@@ -13,6 +13,8 @@ classifiers = [
13
13
" Topic :: Software Development :: Testing" ,
14
14
" Operating System :: OS Independent" ,
15
15
" Programming Language :: Python :: 3" ,
16
+ " Programming Language :: Python :: 3.8" ,
17
+ " Programming Language :: Python :: 3.9" ,
16
18
" Programming Language :: Python :: 3.10" ,
17
19
" Programming Language :: Python :: 3.11" ,
18
20
" Programming Language :: Python :: 3.12" ,
@@ -26,7 +28,7 @@ keywords = ["pytest", "xdist", "pytest-xdist"]
26
28
pytest-xdist-worker-stats = " pytest_xdist_worker_stats"
27
29
28
30
[tool .poetry .dependencies ]
29
- python = " >3.9 "
31
+ python = " >=3.8 "
30
32
pytest = " >7.3.2"
31
33
pytest-xdist = " ^3.3"
32
34
@@ -40,7 +42,7 @@ build-backend = "poetry.core.masonry.api"
40
42
41
43
[tool .black ]
42
44
line-length = 120
43
- target_version = [' py310' , ' py311' , ' py312' ]
45
+ target_version = [' py38 ' , ' py39 ' , ' py310' , ' py311' , ' py312' ]
44
46
include = ' \.pyi?$'
45
47
exclude = '''
46
48
(
@@ -83,7 +85,7 @@ select = [
83
85
]
84
86
85
87
line-length = 120
86
- target-version = " py310 "
88
+ target-version = " py38 "
87
89
88
90
# Never enforce...
89
91
ignore = [
0 commit comments