Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add test-time dependency on setuptools #776

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions conda/environments/all_cuda-118_arch-x86_64.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@ dependencies:
- recommonmark
- scikit-image>=0.19.0,<0.25.0a0
- scipy>=1.6.0
- setuptools>=60.0
- sphinx<6
- sysroot_linux-64==2.17
- tifffile>=2022.7.28
Expand Down
1 change: 1 addition & 0 deletions conda/environments/all_cuda-125_arch-x86_64.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@ dependencies:
- recommonmark
- scikit-image>=0.19.0,<0.25.0a0
- scipy>=1.6.0
- setuptools>=60.0
- sphinx<6
- sysroot_linux-64==2.17
- tifffile>=2022.7.28
Expand Down
1 change: 1 addition & 0 deletions dependencies.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -301,6 +301,7 @@ dependencies:
- pytest-cov>=2.12.1
- pytest-lazy-fixtures>=1.0.0
- pytest-xdist
- setuptools>=60.0 # provides 'distutils', keeps 'GPUtil' working on Python 3.12+
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

setuptools==60.0.0 is the first release where disutils was vendored. From https://setuptools.pypa.io/en/latest/deprecated/distutils-legacy.html

Since the 60.0.0 release, Setuptools includes a local, vendored copy of distutils (from late copies of CPython) that is enabled by default.

That release is from December 2021 (link), so I'd be surprised if it causes any conflicts.

- tifffile>=2022.7.28
- pooch>=1.6.0 # needed to download scikit-image sample data
- pywavelets>=1.0
Expand Down
1 change: 1 addition & 0 deletions python/cucim/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,7 @@ test = [
"pytest-xdist",
"pytest>=6.2.4,<8.0.0a0",
"pywavelets>=1.0",
"setuptools>=60.0",
"tifffile>=2022.7.28",
] # This list was generated by `rapids-dependency-file-generator`. To make changes, edit ../../dependencies.yaml and run `rapids-dependency-file-generator`.
developer = [
Expand Down