-
Notifications
You must be signed in to change notification settings - Fork 3
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
__init__.py:main fails with ValueError: too many values to unpack #246
Comments
Invoking the
|
Currently, the only console script entry points are: [project.scripts]
hyp3_autorift = "hyp3_autorift.process:main"
s1_correction = "hyp3_autorift.s1_correction:main" and we dropped before we cut over to My guess is that pip didn't clean up the entry points appropriately when hyp3_autorift was updated sometime before v0.11.0 and now. I would expect a fresh environment and pip install to solve the issue. |
I've confirmed I can't reproduce my original issue using a fresh install of v0.15.0:
|
Reviewing importlib.metadata.entry_points, there are multiple entry points registered with the same
hyp3_autorift
name:This was possibly introduced when migrating from setup.py to pyproject.toml
The text was updated successfully, but these errors were encountered: