Adam Williamson

Results 433 comments of Adam Williamson

Note - I'm using CI to run the tests here, haven't run them locally, could still have errors.

welp, apparently there is no CI. ran tox locally and it didn't show any errors in these tests (hit six errors and a failure in some other tests).

Sent a fix that actually works with requests 2.32.3 as https://github.com/httpie/cli/pull/1596 .

Agreed. I'm still working on my fedpkg PR, it keeps...metastasizing. But should be done by EOD.

fedpkg pr is https://pagure.io/fedpkg/pull-request/560 .

LGTM too, but it fails tests because the line is too long, our max is 90 chars. @murolem can you reformat? Thanks!

I rebased this against 2.0.1 as https://github.com/pydanny/cached-property/pull/359 .

after initial-setup runs, either a login prompt or a logged-in session must be presented next. this is in the release criteria, and it's how it has always worked previously.

This is because [wrap_socket is deprecated in Python 3.12](https://docs.python.org/3/whatsnew/3.12.html#ssl). It needs to be ported to use `ssl.SSLContext.wrap_socket`.

note that Python 3.13 appears to have added native PSK support with `SSLContext.set_psk_server_callback` and `SSLContext.set_psk_client_callback` , so possibly things that use sslpsk should be ported to that for 3.13+...that would...