11[tool .poetry ]
22name = " pytest-xdist-worker-stats"
3- version = " 0.1.5 "
3+ version = " 0.1.6 "
44description = " A pytest plugin to list worker statistics after a xdist run."
55authors = [
" Mikuláš Poul <[email protected] >" ]
66license = " 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"]
2628pytest-xdist-worker-stats = " pytest_xdist_worker_stats"
2729
2830[tool .poetry .dependencies ]
29- python = " >3.9 "
31+ python = " >=3.8 "
3032pytest = " >7.3.2"
3133pytest-xdist = " ^3.3"
3234
@@ -40,7 +42,7 @@ build-backend = "poetry.core.masonry.api"
4042
4143[tool .black ]
4244line-length = 120
43- target_version = [' py310' , ' py311' , ' py312' ]
45+ target_version = [' py38 ' , ' py39 ' , ' py310' , ' py311' , ' py312' ]
4446include = ' \.pyi?$'
4547exclude = '''
4648(
@@ -83,7 +85,7 @@ select = [
8385]
8486
8587line-length = 120
86- target-version = " py310 "
88+ target-version = " py38 "
8789
8890# Never enforce...
8991ignore = [
0 commit comments