Skip to content

Commit

Permalink
[CI] Pin setuptools because it broke twice since the last CI run
Browse files Browse the repository at this point in the history
  • Loading branch information
mxmlnkn committed Oct 14, 2024
1 parent 9c606a4 commit 8715893
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
3 changes: 2 additions & 1 deletion python/indexed_bzip2/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,6 @@
[build-system]
# Use setuptools >= 43 because it automatically includes pyproject.toml in source distribution
# Use setuptools >= 46.5 to use attr: package.__version__
# Use setuptools < 72 because of this: https://github.com/pypa/distutils/issues/283
# https://setuptools.readthedocs.io/en/latest/history.html#id284
requires = ["setuptools >= 46.4.0", "wheel", "cython >= 0.29.24"]
requires = ["setuptools >= 46.4.0, < 72", "wheel", "cython >= 0.29.24"]
8 changes: 7 additions & 1 deletion python/rapidgzip/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,11 @@
[build-system]
# Use setuptools >= 43 because it automatically includes pyproject.toml in source distribution
# Use setuptools >= 46.5 to use attr: package.__version__
# Use setuptools < 72 because of this: https://github.com/pypa/distutils/issues/283
# Use setuptools < 74 because of removed msvccompiler:
# https://github.com/pypa/setuptools/issues/4612
# https://github.com/pypa/setuptools/issues/3532
# https://github.com/pypa/setuptools/pull/3505
# https://github.com/zhisong/pyoculus/issues/10
# https://setuptools.readthedocs.io/en/latest/history.html#id284
requires = ["setuptools >= 46.4.0", "wheel", "cython >= 0.29.24"]
requires = ["setuptools >= 46.4.0, < 72", "wheel", "cython >= 0.29.24"]

0 comments on commit 8715893

Please sign in to comment.