Skip to content

Commit 0f06fd0

Browse files
tadashigakiTomAugspurger
authored andcommitted
BUG: Fix dep generation (#28734)
Closes #28714
1 parent 4c97af9 commit 0f06fd0

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

requirements-dev.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ numpydoc>=0.9.0
1717
nbconvert>=5.4.1
1818
nbsphinx
1919
pandoc
20-
dask-core
20+
dask
2121
toolz>=0.7.3
2222
fsspec>=0.5.1
2323
partd>=0.3.10

scripts/generate_pip_deps_from_conda.py

+3
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,9 @@ def conda_package_to_pip(package):
4848

4949
break
5050

51+
if package in RENAME:
52+
return RENAME[package]
53+
5154
return package
5255

5356

0 commit comments

Comments
 (0)