Skip to content

Commit

Permalink
fix: pin the setuptools version on PyPy
Browse files Browse the repository at this point in the history
  • Loading branch information
BoboTiG committed Sep 16, 2024
1 parent 09a9098 commit 630d076
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ CHANGES

* Publish Python 3.13 wheels.
* Rebuild Cython wrapper with Cython 3.0.11.
* Stick to ``setuptools < 72`` to workaround a crash with PyPy (https://github.com/pypa/distutils/issues/283)

1.2.0 (2024-06-05)
------------------
Expand Down
2 changes: 2 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@
]
install_requires = [
"setuptools",
# FIXME: remove the next line when https://github.com/pypa/distutils/issues/283 is done
"setuptools<72.2.0; implementation_name == 'pypy'",
]

MARISA_ROOT_DIR = "marisa-trie"
Expand Down

0 comments on commit 630d076

Please sign in to comment.