Skip to content

Commit e955be0

Browse files
authored
Requires py39 or newer (#11)
1 parent 9684de4 commit e955be0

File tree

4 files changed

+4
-5
lines changed

4 files changed

+4
-5
lines changed

.github/workflows/tox.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@ jobs:
3030
id: generate_matrix
3131
uses: coactions/matrix@main
3232
with:
33+
min_python: "3.9"
3334
other_names: |
3435
lint
3536
pkg

README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@
88
This plugin aims to be used to host multiple basic pytest extensions that meet
99
the following criteria:
1010

11-
- Keep py36 compatibility
1211
- Downgrade gracefully, meaning that if the plugin is removed, you will still
1312
be able to run pytest
1413

pyproject.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ build-backend = "setuptools.build_meta"
88

99
[project]
1010
# https://peps.python.org/pep-0621/#readme
11-
requires-python = ">=3.8"
11+
requires-python = ">=3.9"
1212
dynamic = ["version"]
1313
name = "pytest-plus"
1414
description = "PyTest Plus Plugin :: extends pytest functionality"
@@ -32,7 +32,7 @@ classifiers = [
3232
"Programming Language :: Python :: 3",
3333
"Programming Language :: Python :: 3.10",
3434
"Programming Language :: Python :: 3.11",
35-
"Programming Language :: Python :: 3.8",
35+
"Programming Language :: Python :: 3.12",
3636
"Programming Language :: Python :: 3.9",
3737
"Programming Language :: Python",
3838
"Topic :: Software Development :: Quality Assurance",
@@ -41,7 +41,7 @@ classifiers = [
4141
"Topic :: Utilities",
4242
]
4343
keywords = ["testing", "pytest", "plugin"]
44-
dependencies = ["pytest>=6.0.1", "more_itertools>=8.4.0"]
44+
dependencies = ["pytest>=6.0.1"]
4545

4646
[project.urls]
4747
homepage = "https://github.com/pytest-dev/pytest-plus"

requirements.txt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ attrs==22.1.0
88
coverage==7.0.0
99
exceptiongroup==1.0.4
1010
iniconfig==1.1.1
11-
more-itertools==9.0.0
1211
packaging==22.0
1312
pluggy==1.0.0
1413
py==1.11.0

0 commit comments

Comments
 (0)