Skip to content

Commit c5bc92d

Browse files
committed
Drop support for EOL Python 3.5
1 parent 7f66f8b commit c5bc92d

4 files changed

Lines changed: 6 additions & 7 deletions

File tree

.travis.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
---
22
language: python
33
python:
4-
- 3.5
54
- 3.6
65
- 3.7
76
- 3.8
@@ -20,8 +19,7 @@ install:
2019
- pip install -q pre-commit
2120
- pre-commit install
2221
script:
23-
- if [[ "$TRAVIS_PYTHON_VERSION" > "3.5" ]] &&
24-
[[ "$TRAVIS_PYTHON_VERSION" != pypy* ]]; then
22+
- if [[ "$TRAVIS_PYTHON_VERSION" != pypy* ]]; then
2523
pre-commit run --all-files --show-diff-on-failure;
2624
fi
2725
- pytest

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ Requirements
1919

2020
You will need the following prerequisites in order to use pytest-rerunfailures:
2121

22-
- Python 3.5, up to 3.8, or PyPy3
22+
- Python 3.6, up to 3.8, or PyPy3
2323
- pytest 5.0 or newer
2424

2525
This package is currently tested against the last 5 minor pytest releases. In

setup.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
py_modules=["pytest_rerunfailures"],
1515
entry_points={"pytest11": ["rerunfailures = pytest_rerunfailures"]},
1616
install_requires=["setuptools>=40.0", "pytest >= 5.0"],
17-
python_requires=">=3.5",
17+
python_requires=">=3.6",
1818
license="Mozilla Public License 2.0 (MPL 2.0)",
1919
keywords="py.test pytest rerun failures flaky",
2020
zip_safe=False,
@@ -29,10 +29,11 @@
2929
"Topic :: Software Development :: Quality Assurance",
3030
"Topic :: Software Development :: Testing",
3131
"Topic :: Utilities",
32-
"Programming Language :: Python :: 3.5",
32+
"Programming Language :: Python :: 3",
3333
"Programming Language :: Python :: 3.6",
3434
"Programming Language :: Python :: 3.7",
3535
"Programming Language :: Python :: 3.8",
36+
"Programming Language :: Python :: 3 :: Only",
3637
"Programming Language :: Python :: Implementation :: CPython",
3738
"Programming Language :: Python :: Implementation :: PyPy",
3839
],

tox.ini

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

1717
[testenv]

0 commit comments

Comments
 (0)