Skip to content

Commit 8224c49

Browse files
committed
Fix the CI after setuptools 75.6 change
Signed-off-by: Bernát Gábor <[email protected]>
1 parent 9200e11 commit 8224c49

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ test = [
9696
"pytest-mock>=3.14",
9797
"pytest-xdist>=3.6.1",
9898
"re-assert>=1.1",
99-
"setuptools>=75.1",
99+
"setuptools>=75.6",
100100
"time-machine>=2.15; implementation_name!='pypy'",
101101
"wheel>=0.44",
102102
]

tests/tox_env/python/virtual_env/package/test_python_package_util.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,10 +42,10 @@ def test_load_dependency_many_extra(pkg_with_extras: PathDistribution) -> None:
4242
exp = [
4343
Requirement("platformdirs>=2.1"),
4444
Requirement("colorama>=0.4.3"),
45-
Requirement("sphinx>=3"),
46-
Requirement("sphinx-rtd-theme<1,>=0.4.3"),
4745
Requirement(f'covdefaults>=1.2; python_version == "2.7" or python_version == "{py_ver}"'),
4846
Requirement(f'pytest>=5.4.1; python_version == "{py_ver}"'),
47+
Requirement("sphinx>=3"),
48+
Requirement("sphinx-rtd-theme<1,>=0.4.3"),
4949
]
5050
for left, right in zip_longest(result, exp):
5151
assert isinstance(right, Requirement)

0 commit comments

Comments
 (0)