File tree Expand file tree Collapse file tree
packages/google-cloud-spanner
tests/unit/gapic/spanner_v1 Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -62,14 +62,14 @@ Supported Python Versions
6262Our client libraries are compatible with all current `active `_ and `maintenance `_ versions of
6363Python.
6464
65- Python >= 3.9 , including 3.14
65+ Python >= 3.10 , including 3.14
6666
6767.. _active : https://devguide.python.org/devcycle/#in-development-main-branch
6868.. _maintenance : https://devguide.python.org/devcycle/#maintenance-branches
6969
7070Unsupported Python Versions
7171^^^^^^^^^^^^^^^^^^^^^^^^^^^
72- Python <= 3.8
72+ Python <= 3.9
7373
7474If you are using an `end-of-life `_
7575version of Python, we recommend that you update as soon as possible to an actively supported version.
Original file line number Diff line number Diff line change @@ -62,14 +62,14 @@ Supported Python Versions
6262Our client libraries are compatible with all current `active `_ and `maintenance `_ versions of
6363Python.
6464
65- Python >= 3.9 , including 3.14
65+ Python >= 3.10 , including 3.14
6666
6767.. _active : https://devguide.python.org/devcycle/#in-development-main-branch
6868.. _maintenance : https://devguide.python.org/devcycle/#maintenance-branches
6969
7070Unsupported Python Versions
7171^^^^^^^^^^^^^^^^^^^^^^^^^^^
72- Python <= 3.8
72+ Python <= 3.9
7373
7474If you are using an `end-of-life `_
7575version of Python, we recommend that you update as soon as possible to an actively supported version.
Original file line number Diff line number Diff line change 3131SYSTEM_TEST_PYTHON_VERSIONS : List [str ] = ["3.12" ]
3232
3333ALL_PYTHON : List [str ] = [
34- "3.9" ,
3534 "3.10" ,
3635 "3.11" ,
3736 "3.12" ,
Original file line number Diff line number Diff line change 8686 "License :: OSI Approved :: Apache Software License" ,
8787 "Programming Language :: Python" ,
8888 "Programming Language :: Python :: 3" ,
89- "Programming Language :: Python :: 3.9" ,
9089 "Programming Language :: Python :: 3.10" ,
9190 "Programming Language :: Python :: 3.11" ,
9291 "Programming Language :: Python :: 3.12" ,
9796 ],
9897 platforms = "Posix; MacOS X; Windows" ,
9998 packages = packages ,
100- python_requires = ">=3.9 " ,
99+ python_requires = ">=3.10 " ,
101100 install_requires = dependencies ,
102101 extras_require = extras ,
103102 include_package_data = True ,
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -2783,9 +2783,7 @@ async def test_list_sessions_async_pages():
27832783 RuntimeError ,
27842784 )
27852785 pages = []
2786- # Workaround issue in python 3.9 related to code coverage by adding `# pragma: no branch`
2787- # See https://github.com/googleapis/gapic-generator-python/pull/1174#issuecomment-1025132372
2788- async for page_ in ( # pragma: no branch
2786+ async for page_ in (
27892787 await client .list_sessions (request = {})
27902788 ).pages :
27912789 pages .append (page_ )
You can’t perform that action at this time.
0 commit comments