Skip to content

Commit 4e3c2eb

Browse files
committed
chore: revert back to 3.10+ support
1 parent 817e3c4 commit 4e3c2eb

File tree

3 files changed

+4
-129
lines changed

3 files changed

+4
-129
lines changed

packages/bigframes/noxfile.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@
5454

5555
DEFAULT_PYTHON_VERSION = "3.14"
5656

57-
ALL_PYTHON = ["3.9", "3.10", "3.11", "3.12", "3.13", "3.14"]
57+
ALL_PYTHON = ["3.10", "3.11", "3.12", "3.13", "3.14"]
5858
UNIT_TEST_STANDARD_DEPENDENCIES = [
5959
"mock",
6060
PYTEST_VERSION,
@@ -253,8 +253,8 @@ def run_unit(session, install_test_extra):
253253

254254
@nox.session(python=ALL_PYTHON)
255255
def unit(session):
256-
if session.python in ("3.7",):
257-
session.skip("Python 3.7 is no longer supported")
256+
if session.python in ("3.7", "3.8", "3.9"):
257+
session.skip("Python 3.9 and below are not supported")
258258
run_unit(session, install_test_extra=True)
259259

260260

packages/bigframes/setup.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,6 @@
140140
"License :: OSI Approved :: Apache Software License",
141141
"Programming Language :: Python",
142142
"Programming Language :: Python :: 3",
143-
"Programming Language :: Python :: 3.9",
144143
"Programming Language :: Python :: 3.10",
145144
"Programming Language :: Python :: 3.11",
146145
"Programming Language :: Python :: 3.12",
@@ -157,7 +156,7 @@
157156
"bigframes_vendored": "third_party/bigframes_vendored",
158157
},
159158
packages=packages,
160-
python_requires=">=3.9",
159+
python_requires=">=3.10",
161160
include_package_data=True,
162161
zip_safe=False,
163162
)

packages/bigframes/testing/constraints-3.9.txt

Lines changed: 0 additions & 124 deletions
This file was deleted.

0 commit comments

Comments
 (0)