Skip to content

Commit 88e0023

Browse files
authored
Drop support for Python 3.9. (#308)
* Drop support for Python 3.9.
1 parent df47974 commit 88e0023

File tree

5 files changed

+7
-6
lines changed

5 files changed

+7
-6
lines changed

.github/workflows/test.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@ jobs:
2020
fail-fast: false
2121
matrix:
2222
python-version: [
23-
"3.9",
2423
"3.10",
2524
"3.11",
2625
"3.12",

CHANGES.rst

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,10 @@ Changelog
44
16.1 (unreleased)
55
-----------------
66

7-
- Changed "localhost" to "127.0.0.1" to avoid bad hostname resolution
7+
- Changed "localhost" to "127.0.0.1" to avoid bad hostname resolution.
8+
9+
- Drop support for Python 3.9.
10+
811

912
16.0.1 (2025-09-02)
1013
-------------------

README.rst

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

2929
You will need the following prerequisites in order to use pytest-rerunfailures:
3030

31-
- Python 3.9+ or PyPy3
31+
- Python 3.10+ or PyPy3
3232
- pytest 8.0 or newer
3333

3434
This plugin can recover from a hard crash with the following optional

pyproject.toml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ keywords = [
2222
]
2323
license.text = "MPL-2.0"
2424
authors = [{name = "Leah Klearman", email = "[email protected]"}]
25-
requires-python = ">=3.9"
25+
requires-python = ">=3.10"
2626
classifiers = [
2727
"Development Status :: 5 - Production/Stable",
2828
"Framework :: Pytest",
@@ -31,7 +31,6 @@ classifiers = [
3131
"Operating System :: Microsoft :: Windows",
3232
"Operating System :: POSIX",
3333
"Programming Language :: Python :: 3 :: Only",
34-
"Programming Language :: Python :: 3.9",
3534
"Programming Language :: Python :: 3.10",
3635
"Programming Language :: Python :: 3.11",
3736
"Programming Language :: Python :: 3.12",

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{39,310,311,312,313,314,py3}-pytest{80,81,82,83,84,main}
14+
py{310,311,312,313,314,py3}-pytest{80,81,82,83,84,main}
1515
docs
1616
minversion = 4.0
1717

0 commit comments

Comments
 (0)