-
Notifications
You must be signed in to change notification settings - Fork 84
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Drop support for Python 3.8 - Drop support for pytest < 7.4 - Add support for Python 3.13 - Add support for pytest 8.2 and 8.3. - Exclude broken version --------- Co-authored-by: anthony sottile <[email protected]>
- Loading branch information
1 parent
e9996df
commit 67e0056
Showing
5 changed files
with
21 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,7 +9,7 @@ ignore = [".pre-commit-config.yaml"] | |
|
||
[project] | ||
name = "pytest-rerunfailures" | ||
version = "14.1.dev0" | ||
version = "15.0.dev0" | ||
description = "pytest plugin to re-run tests to eliminate flaky failures" | ||
dynamic = [ | ||
"readme", | ||
|
@@ -23,7 +23,7 @@ keywords = [ | |
] | ||
license = {text = "Mozilla Public License 2.0 (MPL 2.0)"} | ||
authors = [{name = "Leah Klearman", email = "[email protected]"}] | ||
requires-python = ">=3.8" | ||
requires-python = ">=3.9" | ||
classifiers = [ | ||
"Development Status :: 5 - Production/Stable", | ||
"Framework :: Pytest", | ||
|
@@ -33,11 +33,11 @@ classifiers = [ | |
"Operating System :: Microsoft :: Windows", | ||
"Operating System :: POSIX", | ||
"Programming Language :: Python :: 3 :: Only", | ||
"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", | ||
"Programming Language :: Python :: 3.13", | ||
"Programming Language :: Python :: Implementation :: CPython", | ||
"Programming Language :: Python :: Implementation :: PyPy", | ||
"Topic :: Software Development :: Quality Assurance", | ||
|
@@ -46,7 +46,7 @@ classifiers = [ | |
] | ||
dependencies = [ | ||
"packaging>=17.1", | ||
"pytest>=7.2", | ||
"pytest!=8.2.2,>=7.4", | ||
] | ||
urls = {Homepage = "https://github.com/pytest-dev/pytest-rerunfailures"} | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters