Skip to content

Commit 10c9172

Browse files
feat: drop support for Python 3.8 (#1176)
1 parent 753feb2 commit 10c9172

File tree

4 files changed

+5
-7
lines changed

4 files changed

+5
-7
lines changed

.github/workflows/tests.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
strategy:
3636
matrix:
3737
os: [macos-latest, windows-latest, ubuntu-latest]
38-
python-version: ["3.8", "3.12"]
38+
python-version: ["3.9", "3.12"]
3939
fail-fast: false
4040
permissions:
4141
contents: read
@@ -134,7 +134,7 @@ jobs:
134134
runs-on: ubuntu-latest
135135
strategy:
136136
matrix:
137-
python-version: ["3.8", "3.12"]
137+
python-version: ["3.9", "3.12"]
138138
fail-fast: false
139139
permissions:
140140
contents: read

.mypy.ini

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[mypy]
2-
python_version = 3.8
2+
python_version = 3.9
33
warn_unused_configs = True
44
namespace_packages = True
55

noxfile.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@
1414
limitations under the License.
1515
"""
1616

17-
1817
from __future__ import absolute_import
1918

2019
import os
@@ -26,7 +25,7 @@
2625

2726
LINT_PATHS = ["google", "tests", "noxfile.py", "setup.py"]
2827

29-
TEST_PYTHON_VERSIONS = ["3.8", "3.9", "3.10", "3.11", "3.12"]
28+
TEST_PYTHON_VERSIONS = ["3.9", "3.10", "3.11", "3.12"]
3029

3130

3231
@nox.session

setup.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,6 @@
6767
"Intended Audience :: Developers",
6868
"License :: OSI Approved :: Apache Software License",
6969
"Programming Language :: Python",
70-
"Programming Language :: Python :: 3.8",
7170
"Programming Language :: Python :: 3.9",
7271
"Programming Language :: Python :: 3.10",
7372
"Programming Language :: Python :: 3.11",
@@ -82,7 +81,7 @@
8281
"pytds": ["python-tds>=1.15.0"],
8382
"asyncpg": ["asyncpg>=0.29.0"],
8483
},
85-
python_requires=">=3.8",
84+
python_requires=">=3.9",
8685
include_package_data=True,
8786
zip_safe=False,
8887
package_data={"google.cloud.sql.connector": ["py.typed"]},

0 commit comments

Comments
 (0)