You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For each package it needs to look up on an index server, pyup is opening a fresh TLS/TCP connection. These are expensive to set up for everyone involved, and it feels like pyup would probably run considerably faster if it held on to the connection.
(pyup appears to make use of requests, which makes this rather easy to accomplish: instead of calling the request.<method> methods, simply create a Session and call the methods on that.)
The text was updated successfully, but these errors were encountered:
If you run
pyup
in verbose mode, you'll see something like,For each package it needs to look up on an index server, pyup is opening a fresh TLS/TCP connection. These are expensive to set up for everyone involved, and it feels like pyup would probably run considerably faster if it held on to the connection.
(pyup appears to make use of
requests
, which makes this rather easy to accomplish: instead of calling therequest.<method>
methods, simply create aSession
and call the methods on that.)The text was updated successfully, but these errors were encountered: