-
Notifications
You must be signed in to change notification settings - Fork 84
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
image: hack jaraco.text and werkzeug to fix CI #1395
image: hack jaraco.text and werkzeug to fix CI #1395
Conversation
we get a collision because jaraco.text is installed in site-packages but we want a newer version when testing.
86c7bff
to
07ab30b
Compare
07ab30b
to
04d18d1
Compare
Hi @tobias-urdin, I believe I have found the cause of the Werkzeug errors. It looks like the system
The latest version for Jammy (2.0.2+dfsg1-1ubuntu0.22.04.2) appears to have some non-standard patches on top of version 2.0.2.
This is actually fine for Python 3.10 (the system Python for Ubuntu Jammy), but broken for Python 3.9 obviously. You'll want to override this in the Gnocchi virtualenv. |
this is required for python 3.9 until we drop that.
04d18d1
to
070074a
Compare
thanks for the details, looks like it's passing now |
@Mergifyio backport stable/4.6 |
✅ Backports have been created
|
we get a collision because jaraco.text is installed in site-packages but we want a newer version when
testing.
werkzeug dist package in ubuntu works with python 3.10 but not 3.9, this fixes that, the hack can be removed when we drop 3.9 support