File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 2121WINDOWS = sys .platform == "win32"
2222
2323
24- def entry_points (group = None ):
25- warnings .warn (
26- "`dask._compatibility.entry_points` has been replaced by `importlib_metadata.entry_points` and will be removed "
27- "in a future version. Please use `importlib_metadata.entry_points` instead." ,
28- DeprecationWarning ,
29- stacklevel = 2 ,
30- )
31- return importlib_metadata .entry_points (group = group )
32-
33-
3424VERSIONS = {
3525 "numpy" : "1.21.0" ,
3626 "pandas" : "2.0.0" ,
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -43,6 +43,8 @@ dependencies = [
4343 # importlib.metadata has the following bugs fixed in 3.10.9 and 3.11.1
4444 # https://github.com/python/cpython/issues/99130
4545 # https://github.com/python/cpython/issues/98706
46+ # Additionally, importlib.metadata.entry_points changed return type in 3.12
47+ # https://docs.python.org/3/library/importlib.metadata.html#importlib.metadata.entry_points
4648 " importlib_metadata >= 4.13.0; python_version < '3.12' " ,
4749]
4850dynamic = [" version" ]
You can’t perform that action at this time.
0 commit comments