Skip to content

Commit 954550a

Browse files
authored
FIX-#7664: Add typing_extensions dependency (#7665)
`typing_extensions` (used to get the `Self` type) is included as a tertiary dependency of Ray for Python 3.12 and below, but it is no longer included for 3.13. This PR makes it a direct dependency of modin. The [conda-forge](https://github.com/conda-forge/modin-feedstock) recipe (which has been broken for a while) will need to be updated. Signed-off-by: Jonathan Shi <jonathan.shi@snowflake.com>
1 parent f23be82 commit 954550a

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,7 @@ def make_distribution(self):
5656
"numpy>=1.22.4",
5757
"fsspec>=2022.11.0",
5858
"psutil>=5.8.0",
59+
"typing-extensions",
5960
],
6061
extras_require={
6162
# can be installed by pip install modin[dask]

0 commit comments

Comments
 (0)