File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 4444RUFF_EXCLUDES = "*golden*,*pb2.py,*pb2.pyi"
4545
4646ALL_PYTHON = (
47- "3.9" ,
4847 "3.10" ,
4948 "3.11" ,
5049 "3.12" ,
@@ -181,7 +180,7 @@ def fragment(session, use_ads_templates=False):
181180 session .install ("-e" , "." )
182181
183182 # The specific failure is `Plugin output is unparseable`
184- if session .python in ( "3.9" , "3. 10") :
183+ if session .python == "3.10" :
185184 session .install ("google-api-core<2.28" )
186185
187186 frag_files = (
@@ -251,7 +250,7 @@ def showcase_library(
251250 # Warnings emitted from google-api-core starting in 2.28
252251 # appear to cause issues when running protoc.
253252 # The specific failure is `Plugin output is unparseable`
254- if session .python in ( "3.9" , "3. 10") :
253+ if session .python == "3.10" :
255254 session .install ("google-api-core<2.28" )
256255
257256 # Install a client library for Showcase.
Original file line number Diff line number Diff line change 7070 "License :: OSI Approved :: Apache Software License" ,
7171 "Programming Language :: Python" ,
7272 "Programming Language :: Python :: 3" ,
73- "Programming Language :: Python :: 3.9" ,
7473 "Programming Language :: Python :: 3.10" ,
7574 "Programming Language :: Python :: 3.11" ,
7675 "Programming Language :: Python :: 3.12" ,
8180 "Topic :: Software Development :: Libraries :: Python Modules" ,
8281 ],
8382 platforms = "Posix; MacOS X" ,
84- python_requires = ">=3.9 " ,
83+ python_requires = ">=3.10 " ,
8584 install_requires = dependencies ,
8685 include_package_data = True ,
8786 zip_safe = False ,
You can’t perform that action at this time.
0 commit comments