Skip to content

Commit 0b5698a

Browse files
committed
tests fixing
1 parent 8ed7a69 commit 0b5698a

File tree

2 files changed

+1
-13
lines changed

2 files changed

+1
-13
lines changed

db_dtypes/__init__.py

-12
Original file line numberDiff line numberDiff line change
@@ -338,18 +338,6 @@ def __sub__(self, other):
338338
return super().__sub__(other)
339339

340340

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

noxfile.py

+1-1
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.9"
35+
DEFAULT_PYTHON_VERSION = "3.10"
3636

3737
UNIT_TEST_PYTHON_VERSIONS: List[str] = ["3.9", "3.10", "3.11", "3.12"]
3838
UNIT_TEST_STANDARD_DEPENDENCIES = [

0 commit comments

Comments
 (0)