Skip to content

Commit 2a8816d

Browse files
committed
chore: revert back to 3.10+ support
1 parent 1b05864 commit 2a8816d

3 files changed

Lines changed: 4 additions & 129 deletions

File tree

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
@@ -141,7 +141,6 @@
141141
"License :: OSI Approved :: Apache Software License",
142142
"Programming Language :: Python",
143143
"Programming Language :: Python :: 3",
144-
"Programming Language :: Python :: 3.9",
145144
"Programming Language :: Python :: 3.10",
146145
"Programming Language :: Python :: 3.11",
147146
"Programming Language :: Python :: 3.12",
@@ -158,7 +157,7 @@
158157
"bigframes_vendored": "third_party/bigframes_vendored",
159158
},
160159
packages=packages,
161-
python_requires=">=3.9",
160+
python_requires=">=3.10",
162161
include_package_data=True,
163162
zip_safe=False,
164163
)

packages/bigframes/testing/constraints-3.9.txt

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

0 commit comments

Comments
 (0)