Skip to content

Commit 45fcad4

Browse files
fix: remove Python 3.7 support due to EOL (#900)
* chore: Remove Python 3.7 support due to EOL * 🦉 Updates from OwlBot post-processor See https://github.com/googleapis/repo-automation-bots/blob/main/packages/owl-bot/README.md * additional changes to remove Python 3.7 * checking owlbot.py changes without snippets * manually removing '3.7' from samples/snippets noxfile * adding back samples templates in owlbot.py * removing kokoro Python 3.7 sample tests * reverting changes, making changes in g3 first * testing with g3 updates * removing 3.7 from settings yaml file * adding back reverted changes * 🦉 Updates from OwlBot post-processor See https://github.com/googleapis/repo-automation-bots/blob/main/packages/owl-bot/README.md * reverting owlbot changes * 🦉 Updates from OwlBot post-processor See https://github.com/googleapis/repo-automation-bots/blob/main/packages/owl-bot/README.md --------- Co-authored-by: Owl Bot <gcf-owl-bot[bot]@users.noreply.github.com>
1 parent afd895e commit 45fcad4

File tree

6 files changed

+8
-11
lines changed

6 files changed

+8
-11
lines changed

CONTRIBUTING.rst

+2-4
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ In order to add a feature:
2222
documentation.
2323

2424
- The feature must work fully on the following CPython versions:
25-
3.7, 3.8, 3.9, 3.10 and 3.11 on both UNIX and Windows.
25+
3.8, 3.9, 3.10 and 3.11 on both UNIX and Windows.
2626

2727
- The feature must not add unnecessary dependencies (where
2828
"unnecessary" is of course subjective, but new dependencies should
@@ -221,13 +221,11 @@ Supported Python Versions
221221

222222
We support:
223223

224-
- `Python 3.7`_
225224
- `Python 3.8`_
226225
- `Python 3.9`_
227226
- `Python 3.10`_
228227
- `Python 3.11`_
229228

230-
.. _Python 3.7: https://docs.python.org/3.7/
231229
.. _Python 3.8: https://docs.python.org/3.8/
232230
.. _Python 3.9: https://docs.python.org/3.9/
233231
.. _Python 3.10: https://docs.python.org/3.10/
@@ -239,7 +237,7 @@ Supported versions can be found in our ``noxfile.py`` `config`_.
239237
.. _config: https://github.com/googleapis/python-bigquery-sqlalchemy/blob/main/noxfile.py
240238

241239

242-
We also explicitly decided to support Python 3 beginning with version 3.7.
240+
We also explicitly decided to support Python 3 beginning with version 3.8.
243241
Reasons for this include:
244242

245243
- Encouraging use of newest versions of Python 3

README.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -53,11 +53,11 @@ dependencies.
5353

5454
Supported Python Versions
5555
^^^^^^^^^^^^^^^^^^^^^^^^^
56-
Python >= 3.7
56+
Python >= 3.8
5757

5858
Unsupported Python Versions
5959
^^^^^^^^^^^^^^^^^^^^^^^^^^^
60-
Python <= 3.6.
60+
Python <= 3.7.
6161

6262

6363
Mac/Linux

noxfile.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333

3434
DEFAULT_PYTHON_VERSION = "3.8"
3535

36-
UNIT_TEST_PYTHON_VERSIONS = ["3.7", "3.8", "3.9", "3.10", "3.11"]
36+
UNIT_TEST_PYTHON_VERSIONS = ["3.8", "3.9", "3.10", "3.11"]
3737
UNIT_TEST_STANDARD_DEPENDENCIES = [
3838
"mock",
3939
"asyncmock",

owlbot.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
"3.11": ["tests", "geography", "bqstorage"],
3434
}
3535
templated_files = common.py_library(
36-
unit_test_python_versions=["3.7", "3.8", "3.9", "3.10", "3.11"],
36+
unit_test_python_versions=["3.8", "3.9", "3.10", "3.11"],
3737
system_test_python_versions=["3.8", "3.11"],
3838
cov_level=100,
3939
unit_test_extras=extras,
@@ -293,6 +293,7 @@ def system_noextras(session):
293293
# Samples templates
294294
# ----------------------------------------------------------------------------
295295

296+
296297
python.py_samples(skip_readmes=True)
297298

298299
s.replace(

samples/snippets/requirements.txt

-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@ greenlet==2.0.2
1313
grpcio==1.57.0
1414
grpcio-status==1.57.0
1515
idna==3.4
16-
importlib-resources===5.12.0; python_version == '3.7'
1716
importlib-resources==6.0.1; python_version >= '3.8'
1817
mako==1.2.4
1918
markupsafe==2.1.3

setup.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,6 @@ def readme():
8484
"License :: OSI Approved :: MIT License",
8585
"Programming Language :: Python",
8686
"Programming Language :: Python :: 3",
87-
"Programming Language :: Python :: 3.7",
8887
"Programming Language :: Python :: 3.8",
8988
"Programming Language :: Python :: 3.9",
9089
"Programming Language :: Python :: 3.10",
@@ -104,7 +103,7 @@ def readme():
104103
"sqlalchemy>=1.2.0,<2.0.0dev",
105104
],
106105
extras_require=extras,
107-
python_requires=">=3.7, <3.12",
106+
python_requires=">=3.8, <3.12",
108107
tests_require=["packaging", "pytz"],
109108
entry_points={
110109
"sqlalchemy.dialects": ["bigquery = sqlalchemy_bigquery:BigQueryDialect"]

0 commit comments

Comments
 (0)