Skip to content

Commit 4abdff4

Browse files
committed
Removes several more refs to 3.8
1 parent d75eed4 commit 4abdff4

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

noxfile.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
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

3737
UNIT_TEST_PYTHON_VERSIONS: List[str] = [
3838
"3.9",
@@ -54,7 +54,7 @@
5454
UNIT_TEST_EXTRAS: List[str] = []
5555
UNIT_TEST_EXTRAS_BY_PYTHON: Dict[str, List[str]] = {}
5656

57-
SYSTEM_TEST_PYTHON_VERSIONS: List[str] = ["3.8"]
57+
SYSTEM_TEST_PYTHON_VERSIONS: List[str] = ["3.9"]
5858
SYSTEM_TEST_STANDARD_DEPENDENCIES: List[str] = [
5959
"mock",
6060
"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-1
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,6 @@ def readme():
7575
],
7676
platforms="Posix; MacOS X; Windows",
7777
install_requires=dependencies,
78-
python_requires=">=3.7",
78+
python_requires=">=3.8",
7979
tests_require=["pytest"],
8080
)

0 commit comments

Comments
 (0)