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
Installing the acryl-datahub package with the athena extras brings in pyathena@2.4.1. However, Poetry 1.4.0 is unable to install this version of pyathena, likely due to pypa/installer#97 but directly caused by python-poetry/poetry#7572.
To Reproduce
Steps to reproduce the behavior:
Add acyrl-datahub with the athena extras at the latest version v0.10.0 to pyproject.toml.
Attempt to poetry install with a fresh virtual environment.
Notice the following error:
KeyError
"There is no item named 'PyAthena-2.4.1.dist-info/WHEEL' in the archive"
at /usr/local/Cellar/python@3.9/3.9.15/Frameworks/Python.framework/Versions/3.9/lib/python3.9/zipfile.py:1438 in getinfo
1434│ def getinfo(self, name):
1435│ """Return the instance of ZipInfo given 'name'."""
1436│ info = self.NameToInfo.get(name)
1437│ if info is None:
→ 1438│ raise KeyError(
1439│ 'There is no item named %r in the archive' % name)
1440│
1441│ return info
1442│
Expected behavior
Successful installation.
The text was updated successfully, but these errors were encountered:
jrouly
changed the title
PyAthena prior to 2.11.0 fails to install via latest Poetry (1.4.0)
PyAthena extra with version prior to 2.11.0 fails to install via latest Poetry (1.4.0)
Mar 3, 2023
This issue is stale because it has been open for 30 days with no activity. If you believe this is still an issue on the latest DataHub release please leave a comment with the version that you tested it with. If this is a question/discussion please head to https://slack.datahubproject.io. For feature requests please use https://feature-requests.datahubproject.io
Describe the bug
Installing the
acryl-datahub
package with theathena
extras brings inpyathena@2.4.1
. However, Poetry 1.4.0 is unable to install this version ofpyathena
, likely due to pypa/installer#97 but directly caused by python-poetry/poetry#7572.To Reproduce
Steps to reproduce the behavior:
acyrl-datahub
with theathena
extras at the latest versionv0.10.0
topyproject.toml
.poetry install
with a fresh virtual environment.Expected behavior
Successful installation.
The text was updated successfully, but these errors were encountered: