Skip to content

Commit

Permalink
Merge pull request #2 from NellyWhads/python_38
Browse files Browse the repository at this point in the history
Support Python 3.8
  • Loading branch information
mikicz authored Apr 11, 2024
2 parents f866c71 + ecbc10d commit 2f8a310
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 5 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,10 @@ jobs:
strategy:
matrix:
tox_env:
- py38-pytest7
- py38-pytest8
- py39-pytest7
- py39-pytest8
- py310-pytest7
- py310-pytest8
- py311-pytest7
Expand Down
10 changes: 6 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "pytest-xdist-worker-stats"
version = "0.1.5"
version = "0.1.6"
description = "A pytest plugin to list worker statistics after a xdist run."
authors = ["Mikuláš Poul <mikulaspoul@gmail.com>"]
license = "MIT"
Expand All @@ -13,6 +13,8 @@ classifiers = [
"Topic :: Software Development :: Testing",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
Expand All @@ -26,7 +28,7 @@ keywords = ["pytest", "xdist", "pytest-xdist"]
pytest-xdist-worker-stats = "pytest_xdist_worker_stats"

[tool.poetry.dependencies]
python = ">3.9"
python = ">=3.8"
pytest = ">7.3.2"
pytest-xdist = "^3.3"

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

[tool.black]
line-length = 120
target_version = ['py310', 'py311', 'py312']
target_version = ['py38', 'py39', 'py310', 'py311', 'py312']
include = '\.pyi?$'
exclude = '''
(
Expand Down Expand Up @@ -83,7 +85,7 @@ select = [
]

line-length = 120
target-version = "py310"
target-version = "py38"

# Never enforce...
ignore = [
Expand Down
2 changes: 1 addition & 1 deletion pytest_xdist_worker_stats/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
from .options import pytest_configure # noqa: F401

__version__ = "0.1.2"
__version__ = "0.1.6"

0 comments on commit 2f8a310

Please sign in to comment.