-
Notifications
You must be signed in to change notification settings - Fork 551
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
Custom setuptools version #872
Comments
bump |
1 similar comment
bump |
Hello @davidofwatkins, Thank you for creating this issue and we will look into it :) |
bump |
updating to allauth 0.50.0 solved the issue for us |
Updating the version of django-allauth due to an error with Python's setup-tools. Also see: actions/setup-python#872
I managed to fix this issue without updating allauth. I install wheel and this fix problem with building (pip install allauth from wheel version). |
How did you install the wheel? Can you give us more insight? @Sharpek |
Sure. I just type |
That did the trick @Sharpek Thanks |
Hello @davidofwatkins 👋, pip install wheel
pip install django-allauth==0.45.0 Could you kindly confirm if this workaround has solved the problem you were encountering? If you're still experiencing difficulties, please do not hesitate to let us know. We're here to help! |
@priya-kinthali Thanks. I ended up upgrading |
Hello @davidofwatkins 👋 |
updating to allauth 0.50.0 solved the issue |
Description:
I'm working with a dependency which is incompatible with the v70 release of
setuptools
for reasons described in pypa/setuptools#3201 (comment). As such, I need to downgrade the version ofsetuptools
used byactions/python
, which I can't seem to do.Action version:
5.1.0
Platform:
Runner type:
Tools version:
Repro steps:
My actions config is pretty simple:
Expected behavior:
The install of
django-allauth==0.44.0
is successful.Actual behavior:
I receive the following error message:
If I run
pip show setuptools
, it shows that I have the correct (old) version of it installed:And if I try to import
convert_path
removed in v70 ofsetuptools
, it works as expected:$ python -c 'from setuptools import convert_path; print("success")' success
But this doesn't seem to work when
pip
is installing dependencies 🫤Any advice or suggestions would be very appreciated! 🙏
The text was updated successfully, but these errors were encountered: