Skip to content

Commit

Permalink
fix(setup): fix typer dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
hbredin committed Apr 5, 2024
1 parent da5794b commit 0f0eedf
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
1 change: 1 addition & 0 deletions doc/source/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ develop
~~~~~~~

- feat(registry): make registry iterable (yields protocol names)
- fix(setup): fix `typer`` dependency

Version 5.0.1 (2023-04-21)
~~~~~~~~~~~~~~~~~~~~~~~~~~
Expand Down
6 changes: 4 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,11 +37,13 @@
"pyannote.core >= 4.1",
"pyYAML >= 3.12",
"pandas >= 0.19",
"typer[all] >= 0.2.1",
"typer >= 0.12.1",
"typing_extensions >= 3.7.4;python_version < '3.8'",
],
entry_points={
"console_scripts": ["pyannote-database=pyannote.database.cli:main",],
"console_scripts": [
"pyannote-database=pyannote.database.cli:main",
],
"pyannote.database.loader": [
".rttm = pyannote.database.loader:RTTMLoader",
".uem = pyannote.database.loader:UEMLoader",
Expand Down

0 comments on commit 0f0eedf

Please sign in to comment.