Skip to content

Commit c86a011

Browse files
committed
Pin setuptools to workaround package_index removal
Fix broadinstitute#192 , which was caused by the removal of `package_index` from setuptools in pypa/setuptools#4963 . Note that I needed to use `setuptools.build_meta:__legacy__` as `build-backend` (instead of the usual `setuptools.build_meta`) because otherwise `python3 -m build` would fail with: ``` ModuleNotFoundError: No module named 'firecloud' ```
1 parent b3fa2a0 commit c86a011

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

pyproject.toml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
[build-system]
2+
requires = ["setuptools<80.3.0"]
3+
build-backend = "setuptools.build_meta:__legacy__"

0 commit comments

Comments
 (0)