-
Notifications
You must be signed in to change notification settings - Fork 67
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
pin down urllib3<2 since botocore doesn't support it #453
Conversation
Look like new version of requests is pulling newer versions of urllib3 which are not comptible with botocore. Ref: boto/botocore#2926 Ref: psf/requests#6443 Ref: urllib3/urllib3#2168
@@ -42,7 +42,7 @@ jobs: | |||
|
|||
pip install -U pip setuptools | |||
|
|||
python setup.py install | |||
pip install . |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
how is this change related to the urllib3 problem?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I thought it was the issue at first.
Since there was a ton of new warning that setup.py install is going to be deprecated.
I might move it to it's own commit
created #454 so we can undo this once the related issues on upstream (botocore and requests) are addressed. |
the test failed:
|
Thanks, you are correct we shouldn't leave forever |
Yeah, I didn't have time to look at it. Doesn't seem to be related to the installation issue, maybe to the change of using java8, but still I would expect it to fail more than one test (or we are stopping at first failure 😭) |
hi @fruch , is it possible that we fail to detect the java runtime installed by
/opt/hostedtoolcache/Java_Temurin-Hotspot_jdk/8.0.362-9/x64 . see https://github.com/scylladb/scylla-ccm/actions/runs/4926279591/jobs/8803175292#step:5:30 . shall we add this directory to the list of Line 254 in 66e9b4c
|
The failing case trys to run cassandra, not scylla |
And I've forgotten you convinced me to not use alternatives command line... Yeah that is the root cause, and I didn't notice it. |
I decided to merge this first, and then handle the CI breakage |
Look like new version of requests is pulling newer versions of urllib3 which are not comptible with
botocore.
Ref: boto/botocore#2926
Ref: psf/requests#6443
Ref: urllib3/urllib3#2168