Python 3.11 - Using uv and bump dependencies for 3.11 - #271
Conversation
sreenithi
left a comment
There was a problem hiding this comment.
LGTM, just some last comments
Co-authored-by: Sreenithi Sridharan <ssreenithi@google.com>
pawbhard
left a comment
There was a problem hiding this comment.
LGTM, Just check once b/529575020, this is the bug because of which upgrade is happening, check if we are updating decency mentioned in bug (If needed check with reporter).
Yes we are updating |
b5bdc90 to
d70a475
Compare
d70a475 to
0b431f1
Compare
|
Regarding the This is the PR which drops it - https://github.com/jd/tenacity/pull/304/changes source code def get_exc_info_from_future(future):
"""
Get an exc_info value from a Future.
Given a a Future instance, retrieve an exc_info value suitable for passing
in as the exc_info parameter to logging.Logger.log() and related methods.
On Python 2, this will be a (type, value, traceback) triple.
On Python 3, this will be an exception instance (with embedded traceback).
If there was no exception, None is returned on both versions of Python.
"""
if six.PY3:
return future.exception()
else:
ex, tb = future.exception_info()
if ex is None:
return None
return type(ex), ex, tbThis is called with Hence no impact as such. |
Description
This PR installs
uvand then installsPython 3.11usinguv.Virtual env is also created using
uvwithPython 3.11.Testing