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
This would be semver major (google-api-core 2.0.0). Clients which cannot move forward (e.g, google-cloud-storage already pin google.api_core < 2.0.0dev either directly or transitively (via google-cloud-core).
Extra cleanups:
Drop mock wrapper (use from unittest import mock directly, replacing work in Use unittest.mock if it is available #208). Can't remove it until we drop support for Python 3.6 / 3.7, as it provides the mock.AsyncMock helper we need.
Drop six.
Drop other Python 2.7-specific workarounds (collections_abc, etc.)
This would be semver major (
google-api-core
2.0.0). Clients which cannot move forward (e.g,google-cloud-storage
already pingoogle.api_core < 2.0.0dev
either directly or transitively (viagoogle-cloud-core
).Extra cleanups:
DropCan't remove it until we drop support for Python 3.6 / 3.7, as it provides themock
wrapper (usefrom unittest import mock
directly, replacing work in Use unittest.mock if it is available #208).mock.AsyncMock
helper we need.six
.collections_abc
, etc.)u"
prefixes for text strings.pytz
(per Drop use of pytz #73).Replace workaround inMoved to Replace Python 2.7 workaround in 'bidi.BackgroundConsumer._thread_main' with 'Condition.wait_for' #211.bidi.BackgroundConsumer._thread_main
withCondition.wait_for
.The text was updated successfully, but these errors were encountered: