Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: adds Python 3.7/3.8 EOL pending deprecation warning #817

Merged
merged 3 commits into from
Oct 7, 2024
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -208,6 +208,7 @@ def default(session):
session.run(
"py.test",
"--quiet",
"-W default::PendingDeprecationWarning",
f"--junitxml=unit_{session.python}_sponge_log.xml",
"--cov=pandas_gbq",
"--cov=tests/unit",
Expand Down Expand Up @@ -290,6 +291,7 @@ def system(session):
session.run(
"py.test",
"--quiet",
"-W default::PendingDeprecationWarning",
f"--junitxml=system_{session.python}_sponge_log.xml",
system_test_path,
*session.posargs,
Expand All @@ -298,6 +300,7 @@ def system(session):
session.run(
"py.test",
"--quiet",
"-W default::PendingDeprecationWarning",
f"--junitxml=system_{session.python}_sponge_log.xml",
system_test_folder_path,
*session.posargs,
Expand Down Expand Up @@ -372,6 +375,7 @@ def prerelease(session):
session.run(
"py.test",
"--quiet",
"-W default::PendingDeprecationWarning",
f"--junitxml=prerelease_unit_{session.python}_sponge_log.xml",
os.path.join("tests", "unit"),
*session.posargs,
Expand All @@ -380,6 +384,7 @@ def prerelease(session):
session.run(
"py.test",
"--quiet",
"-W default::PendingDeprecationWarning",
f"--junitxml=prerelease_system_{session.python}_sponge_log.xml",
os.path.join("tests", "system"),
*session.posargs,
Expand Down
12 changes: 12 additions & 0 deletions pandas_gbq/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,20 @@

from pandas_gbq import version as pandas_gbq_version
chalmerlowe marked this conversation as resolved.
Show resolved Hide resolved

from . import _versions_helpers
from .gbq import Context, context, read_gbq, to_gbq # noqa

sys_major, sys_minor, sys_micro = _versions_helpers.extract_runtime_version()
if sys_major == 3 and sys_minor in (7, 8):
warnings.warn(
"The python-bigquery library will stop supporting Python 3.7 "
"and Python 3.8 in a future major release expected in Q4 2024. "
f"Your Python version is {sys_major}.{sys_minor}.{sys_micro}. We "
"recommend that you update soon to ensure ongoing support. For "
"more details, see: [Google Cloud Client Libraries Supported Python Versions policy](https://cloud.google.com/python/docs/supported-python-versions)",
PendingDeprecationWarning,
)

__version__ = pandas_gbq_version.__version__

__all__ = [
Expand Down
32 changes: 32 additions & 0 deletions pandas_gbq/_versions_helpers.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
# Copyright 2024 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

"""Shared helper functions for verifying versions of installed modules."""


import sys
from typing import Tuple


def extract_runtime_version() -> Tuple[int, int, int]:
# Retrieve the version information
version_info = sys.version_info

# Extract the major, minor, and micro components
major = version_info.major
minor = version_info.minor
micro = version_info.micro

# Display the version number in a clear format
return major, minor, micro
Loading