You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Dec 8, 2023. It is now read-only.
/content/Muskits/muskit/bin/svs_inference.py in
20 import soundfile as sf
21 import torch
---> 22 from typeguard import check_argument_types
23
24 from muskit.utils.cli_utils import get_commandline_args
ImportError: cannot import name 'check_argument_types' from 'typeguard' (/usr/local/lib/python3.9/dist-packages/typeguard-4.0.0rc1-py3.9.egg/typeguard/init.py)
Notice that the version installed by default is 4.0.0, 2 major versions up from 2.7.0.
The check_argument_types function is deprecated in typeguard since v3.0.0
The use of check_argument_types() should either be replaced with the decorator @typechecked wherever it's used or the version of typeguard should be limited to <3.0.0
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Upon attempting to run the Colab demo I came across an error caused by the
typeguard
dependency.Muskits/setup.py
Line 16 in a83f8c3
Notice that the version installed by default is 4.0.0, 2 major versions up from 2.7.0.
The
check_argument_types
function is deprecated in typeguard sincev3.0.0
Muskits/muskit/bin/svs_inference.py
Line 22 in a83f8c3
See https://typeguard.readthedocs.io/en/stable/versionhistory.html
The use of check_argument_types() should either be replaced with the decorator
@typechecked
wherever it's used or the version of typeguard should be limited to<3.0.0
The text was updated successfully, but these errors were encountered: