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 building a GAPIC with in a python 3.12 environment, the build fails with AttributeError: module 'pkgutil' has no attribute 'ImpImporter'. Did you mean: 'zipimporter'?. The stack trace is similar to the one in pypa/setuptools#3935. The issue is fixed in setuptools >=66.1.0.
We currently have a pin for setuptools in requirements.txt which is newer than setuptools 66.1.0, however the failure happens before this step.
There appears to be another pin to an earlier version of setuptools in rules_python. We're currently using rules_python version 0.24.0 which pins setuptools to 60.10.0
When building a GAPIC with in a python 3.12 environment, the build fails with
AttributeError: module 'pkgutil' has no attribute 'ImpImporter'. Did you mean: 'zipimporter'?
. The stack trace is similar to the one in pypa/setuptools#3935. The issue is fixed in setuptools >=66.1.0.We currently have a pin for setuptools in
requirements.txt
which is newer than setuptools 66.1.0, however the failure happens before this step.gapic-generator-python/requirements.txt
Lines 429 to 432 in e46b7ad
There appears to be another pin to an earlier version of
setuptools
inrules_python
. We're currently usingrules_python
version 0.24.0 which pins setuptools to 60.10.0gapic-generator-python/WORKSPACE
Lines 25 to 34 in e46b7ad
We should upgrade to
rules_python
version 0.26.0 which pins setuptools to 68.1.2.setuptools
version 68.1.2 has the fix for the aboveAttributeError
.The text was updated successfully, but these errors were encountered: