-
-
Notifications
You must be signed in to change notification settings - Fork 217
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
Does not install under Python 3.7 #853
Comments
I don't know if it's helpful but I got pretty far along upgrading various dependencies in #839. |
Thanks, that's helpful. But, it's weird, because now a very slight different install method seems to work much better.
goes
And so works fine. |
Invoking setup.py directly is apparently deprecated. Some context and "python setup.py..." etc alternatives here from one of the core python developers, relevant peps referenced within: https://blog.ganssle.io/articles/2021/10/setup-py-deprecated.html |
Aside: I found this somewhat useful https://stackoverflow.com/questions/15724093/difference-between-python-setup-py-install-and-pip-install/15731459#15731459 |
Describe the bug
Using a fresh v3.7 virtualenv, installation and running failed because we are not compatible with recent versions of Werkzeug. To build right now, I have to use:
If not, there is an error that breaks the installation process:
Steps to reproduce the bug
Expected behavior
Install runs, logs get to the point of saying...
Environment
RHEL 7.x
Additional context
I'm happy for myself and @ldbiz to look at fixing this, but I'd like to know how you want to pursue this (given also #385):
Werkzeug<2.2.0
? Or should we look at upgrading (which means dropping at least Python 3.7 asWerkzeug>=2.3.0
does not support it)?urllib3
(due to the underlying OpenSSL version). Where should we document thepip install "urllib3<2.0"
that's needed to make it work?The text was updated successfully, but these errors were encountered: