-
Notifications
You must be signed in to change notification settings - Fork 199
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
CI: Workaround "No module named 'setuptools.command.test'"
Pip 72 was released yesterday (2024-07-28), dropping `setup.py test` support. hdrhistogram 0.6.1 requires it to install. For now constrain Pip to earlier releases, so our tests can be run. refs #1090
- Loading branch information
Showing
3 changed files
with
7 additions
and
0 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,4 +1,7 @@ | ||
paramiko==2.3.2 # Last 2.6-compat version. | ||
# Incompatible with pip >= 72, due to removal of `setup.py test`: | ||
# ModuleNotFoundError: No module named 'setuptools.command.test' | ||
# https://github.com/pypa/setuptools/issues/4519 | ||
hdrhistogram==0.6.1 | ||
PyYAML==3.11; python_version < '2.7' | ||
PyYAML==5.3.1; python_version >= '2.7' # Latest release (Jan 2021) |
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 |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# Setuptools 72 removed `setup.py test`. hdrhistogram 0.6.1 still depends on it. | ||
# TODO Bump dependencies and unconstrain Pip. | ||
setuptools<72 |
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