-
Notifications
You must be signed in to change notification settings - Fork 1k
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
"chalice package" fails in download_all_dependencies() #1857
Comments
I meet the same problem which led to the failure of application deployment. Now I cannot update the chalice-based application. |
Also experiencing this issue. Can confirm that pinning to |
Seems like this is due to pypa/setuptools#2941, which is fixed in 60.0.3. Confirmed that the latest setuptools no longer has this issue so people should no longer be running into this issue (if we wanted to be safe we could explicitly exclude 60.0.0-60.0.2 in our |
verified 60.0.3 does work now 👍 |
Found during CI build and fixed it by reverting setuptools:
python3 -m pip install setuptools==59.8.0
. I'm assuming there's a dependency with distutils/setuptools that was introduced in 60.0.0 that's breaking the downloader.Chalice version used:
Error with setuptools 60.0.0 or greater:
Fixed with setuptools 59.8.0 or lower:
The text was updated successfully, but these errors were encountered: