Skip to content

Commit

Permalink
fix broken dependency specifications
Browse files Browse the repository at this point in the history
    wildcard specifiers such as `cloudpickle>=1.6.*` are invalid
    since packaging 22.0, see also discussion at
    pypa/packaging#645
  • Loading branch information
uweschmitt committed Nov 4, 2023
1 parent 5245da2 commit 559af99
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,11 +28,11 @@
'nbconvert>=6.0.0',
'nbformat>=5.1.3',
'html2text==2020.1.16',
'cloudpickle>=1.6.*',
'click>=7.1.*',
'Pygments>=2.10.*',
'colorama>=0.4.*',
'beautifulsoup4>=4.10.*',
'cloudpickle>=1.6',
'click>=7.1',
'Pygments>=2.10',
'colorama>=0.4',
'beautifulsoup4>=4.10',
'lxml',
],
extras_require={
Expand Down

0 comments on commit 559af99

Please sign in to comment.