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
When I used github action to run poetry install, I got an error that is not expected.
• Installing pyfunctional (1.4.3)
KeyError
"There is no item named 'PyFunctional-1.4.3.dist-info/WHEEL' in the archive"
at /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/zipfile.py:1441 in getinfo
1437│ def getinfo(self, name):
1438│ """Return the instance of ZipInfo given 'name'."""
1439│ info = self.NameToInfo.get(name)
1440│ if info is None:
→ 1441│ raise KeyError(
1442│ 'There is no item named %r in the archive' % name)
1443│
1444│ return info
1445│
The text was updated successfully, but these errors were encountered:
When I inspect the contents of wheel file, I see that the path to the file is pyfunctional-1.4.3.dist-info/WHEEL not PyFunctional-1.4.3.dist-info/WHEEL. Could the case difference in the directory name be causing this error?
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions.
When I used github action to run poetry install, I got an error that is not expected.
The text was updated successfully, but these errors were encountered: