Skip to content

Commit 0b3753d

Browse files
committed
drop python 3.9
1 parent 6321009 commit 0b3753d

File tree

5 files changed

+7
-19
lines changed

5 files changed

+7
-19
lines changed

.github/workflows/unittest.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
runs-on: ubuntu-latest
99
strategy:
1010
matrix:
11-
python: ['3.7', '3.8', '3.9', '3.10', '3.11', '3.12']
11+
python: ['3.9', '3.10', '3.11', '3.12']
1212
steps:
1313
- name: Checkout
1414
uses: actions/checkout@v4
@@ -100,7 +100,7 @@ jobs:
100100
- name: Setup Python
101101
uses: actions/setup-python@v5
102102
with:
103-
python-version: "3.8"
103+
python-version: "3.9"
104104
- name: Install coverage
105105
run: |
106106
python -m pip install --upgrade setuptools pip wheel

noxfile.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -32,9 +32,9 @@
3232
ISORT_VERSION = "isort==5.11.0"
3333
LINT_PATHS = ["docs", "db_dtypes", "tests", "noxfile.py", "setup.py"]
3434

35-
DEFAULT_PYTHON_VERSION = "3.8"
35+
DEFAULT_PYTHON_VERSION = "3.9"
3636

37-
UNIT_TEST_PYTHON_VERSIONS: List[str] = ["3.8", "3.9", "3.10", "3.11", "3.12"]
37+
UNIT_TEST_PYTHON_VERSIONS: List[str] = ["3.9", "3.10", "3.11", "3.12"]
3838
UNIT_TEST_STANDARD_DEPENDENCIES = [
3939
"mock",
4040
"asyncmock",
@@ -48,7 +48,7 @@
4848
UNIT_TEST_EXTRAS: List[str] = []
4949
UNIT_TEST_EXTRAS_BY_PYTHON: Dict[str, List[str]] = {}
5050

51-
SYSTEM_TEST_PYTHON_VERSIONS: List[str] = ["3.8"]
51+
SYSTEM_TEST_PYTHON_VERSIONS: List[str] = ["3.9"]
5252
SYSTEM_TEST_STANDARD_DEPENDENCIES: List[str] = [
5353
"mock",
5454
"pytest",

owlbot.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
# Add templated files
2929
# ----------------------------------------------------------------------------
3030
templated_files = common.py_library(
31-
system_test_python_versions=["3.8"],
31+
system_test_python_versions=["3.9"],
3232
cov_level=100,
3333
intersphinx_dependencies={
3434
"pandas": "https://pandas.pydata.org/pandas-docs/stable/"

setup.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,6 @@ def readme():
6363
"License :: OSI Approved :: Apache Software License",
6464
"Programming Language :: Python",
6565
"Programming Language :: Python :: 3",
66-
"Programming Language :: Python :: 3.8",
6766
"Programming Language :: Python :: 3.9",
6867
"Programming Language :: Python :: 3.10",
6968
"Programming Language :: Python :: 3.11",
@@ -73,6 +72,6 @@ def readme():
7372
],
7473
platforms="Posix; MacOS X; Windows",
7574
install_requires=dependencies,
76-
python_requires=">=3.8",
75+
python_requires=">=3.9",
7776
tests_require=["pytest"],
7877
)

testing/constraints-3.8.txt

-11
This file was deleted.

0 commit comments

Comments
 (0)