Skip to content

Commit 4b5800e

Browse files
author
Michael Howitz
committed
Drop support for pytest < 5.3.
1 parent 0589f69 commit 4b5800e

File tree

5 files changed

+8
-9
lines changed

5 files changed

+8
-9
lines changed

.github/workflows/test.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,6 @@ jobs:
2929
"pypy3",
3030
]
3131
pytest-version: [
32-
"5.0.*",
33-
"5.1.*",
34-
"5.2.*",
3532
"5.3.*",
3633
"5.4.*",
3734
"6.0.*",

CHANGES.rst

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@ Backwards incompatible changes
99

1010
- Drop support for Python 3.5.
1111

12+
- Drop support for pytest < 5.3.
13+
1214
Features
1315
++++++++
1416

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ Requirements
2020
You will need the following prerequisites in order to use pytest-rerunfailures:
2121

2222
- Python 3.6, up to 3.9, or PyPy3
23-
- pytest 5.0 or newer
23+
- pytest 5.3 or newer
2424

2525
This package is currently tested against the last 5 minor pytest releases. In
2626
case you work with an older version of pytest you should consider updating or

setup.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,10 @@
1313
url="https://github.com/pytest-dev/pytest-rerunfailures",
1414
py_modules=["pytest_rerunfailures"],
1515
entry_points={"pytest11": ["rerunfailures = pytest_rerunfailures"]},
16-
install_requires=["setuptools>=40.0", "pytest >= 5.0"],
16+
install_requires=[
17+
"setuptools>=40.0",
18+
"pytest >= 5.3",
19+
],
1720
python_requires=">=3.6",
1821
license="Mozilla Public License 2.0 (MPL 2.0)",
1922
keywords="py.test pytest rerun failures flaky",

tox.ini

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,15 +11,12 @@ max-line-length = 88
1111
[tox]
1212
envlist =
1313
linting
14-
py{36,37,38,39,py3}-pytest{50,51,52,53,54,60,61}
14+
py{36,37,38,39,py3}-pytest{53,54,60,61,62}
1515
minversion = 3.17.1
1616

1717
[testenv]
1818
commands = pytest test_pytest_rerunfailures.py {posargs}
1919
deps =
20-
pytest50: pytest==5.0.*
21-
pytest51: pytest==5.1.*
22-
pytest52: pytest==5.2.*
2320
pytest53: pytest==5.3.*
2421
pytest54: pytest==5.4.*
2522
pytest60: pytest==6.0.*

0 commit comments

Comments
 (0)