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
After installing versioneer v0.20 in our project mypy fails with:
package/_version.py:54: error: Need type annotation for "LONG_VERSION_PY" (hint: "LONG_VERSION_PY: Dict[<type>, <type>] = ...")
I know that one could simply ignore this file in the mypy config, but since it is only this single complaint you could maybe add the type hint? If I see it correctly it is simply:
LONG_VERSION_PY: dict[str, str] = {}
The text was updated successfully, but these errors were encountered:
After installing versioneer v0.20 in our project
mypy
fails with:I know that one could simply ignore this file in the mypy config, but since it is only this single complaint you could maybe add the type hint? If I see it correctly it is simply:
The text was updated successfully, but these errors were encountered: