Skip to content

Commit

Permalink
Cap setuptools version.
Browse files Browse the repository at this point in the history
Newer versions include tests regardless of what the configuration says.
  • Loading branch information
domdfcoding committed May 20, 2024
1 parent 3305ddb commit 5cb86a3
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion repo_helper/files/packaging.py
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ def make_pyproject(repo_path: pathlib.Path, templates: Environment) -> List[str]
build_backend = "setuptools.build_meta"

build_requirements_ = {
"setuptools>=40.6.0,!=61.*",
"setuptools!=61.*,<=67.1.0,>=40.6.0",
"wheel>=0.34.2",
"whey",
"repo-helper",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[build-system]
requires = [ "setuptools!=61.*,>=40.6.0", "wheel>=0.34.2",]
requires = [ "setuptools!=61.*,<=67.1.0,>=40.6.0", "wheel>=0.34.2",]
build-backend = "setuptools.build_meta"

[project]
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[build-system]
requires = [ "setuptools!=61.*,>=40.6.0", "wheel>=0.34.2",]
requires = [ "setuptools!=61.*,<=67.1.0,>=40.6.0", "wheel>=0.34.2",]
build-backend = "setuptools.build_meta"

[project]
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[build-system]
requires = [ "setuptools!=61.*,>=40.6.0", "wheel>=0.34.2",]
requires = [ "setuptools!=61.*,<=67.1.0,>=40.6.0", "wheel>=0.34.2",]
build-backend = "setuptools.build_meta"

[project]
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[build-system]
requires = [ "setuptools!=61.*,>=40.6.0", "wheel>=0.34.2",]
requires = [ "setuptools!=61.*,<=67.1.0,>=40.6.0", "wheel>=0.34.2",]
build-backend = "setuptools.build_meta"

[project]
Expand Down

0 comments on commit 5cb86a3

Please sign in to comment.