Skip to content

Commit 559af99

Browse files
committed
fix broken dependency specifications
wildcard specifiers such as `cloudpickle>=1.6.*` are invalid since packaging 22.0, see also discussion at pypa/packaging#645
1 parent 5245da2 commit 559af99

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

setup.py

+5-5
Original file line numberDiff line numberDiff line change
@@ -28,11 +28,11 @@
2828
'nbconvert>=6.0.0',
2929
'nbformat>=5.1.3',
3030
'html2text==2020.1.16',
31-
'cloudpickle>=1.6.*',
32-
'click>=7.1.*',
33-
'Pygments>=2.10.*',
34-
'colorama>=0.4.*',
35-
'beautifulsoup4>=4.10.*',
31+
'cloudpickle>=1.6',
32+
'click>=7.1',
33+
'Pygments>=2.10',
34+
'colorama>=0.4',
35+
'beautifulsoup4>=4.10',
3636
'lxml',
3737
],
3838
extras_require={

0 commit comments

Comments
 (0)