-
-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
11 additions
and
3 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
[bumpversion] | ||
current_version = 72.1.0 | ||
current_version = 72.2.0 | ||
commit = True | ||
tag = True | ||
|
||
|
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 was deleted.
Oops, something went wrong.
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 |
---|---|---|
|
@@ -5,7 +5,7 @@ backend-path = ["."] | |
|
||
[project] | ||
name = "setuptools" | ||
version = "72.1.0" | ||
version = "72.2.0" | ||
authors = [ | ||
{ name = "Python Packaging Authority", email = "[email protected]" }, | ||
] | ||
|
76942cf
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It seems that this tag never got published to PyPI due to a failure in the integration tests.
The
brotli
package fails to build with the error:I suspect there might be an outdated
*.egg-info/entrypoints.txt
or*.dist-info/entrypoints.txt
somewhere insys.path
of the CI worker?In my local test I can see that there is a
/tmp/pytest-of-abravalheri/pytest-155/test_install_sdist_brotli_v_LA0/.venv/lib/python3.11/site-packages/setuptools-70.3.0.dist-info
file in the generated virtual environment for some reason. Isn't the-I
option inpip install
supposed to prevent this from happening?Other information relevant is that
Brotli
also uses the removedtest_suite
option.76942cf
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I seem to recall having experienced this in a different release as well... and I think I re-ran the integration tests and they succeeded on the second run. Looking at https://github.com/pypa/setuptools/actions/runs/10146616001, it was run just once, so not that one? I think it was https://github.com/pypa/setuptools/actions/runs/10134752619, in particular attempt 1.
Aha, yes. I reported the issue in #4518, but it went off topic and I assumed the issue was transient (not intermittent).
I see now you've filed #4564 and addressed the issue I'll take the discussion there.