From cf68c376538b332e457bd89de4eeeba114980041 Mon Sep 17 00:00:00 2001 From: Anthonios Partheniou Date: Wed, 5 Mar 2025 14:50:10 +0000 Subject: [PATCH 1/2] build: use python 3.10 for testing --- .github/workflows/lint.yml | 2 +- noxfile.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 4866193a..1051da0b 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -12,7 +12,7 @@ jobs: - name: Setup Python uses: actions/setup-python@v5 with: - python-version: "3.8" + python-version: "3.10" - name: Install nox run: | python -m pip install --upgrade setuptools pip wheel diff --git a/noxfile.py b/noxfile.py index cf3405af..33923771 100644 --- a/noxfile.py +++ b/noxfile.py @@ -32,7 +32,7 @@ ISORT_VERSION = "isort==5.10.1" LINT_PATHS = ["docs", "pandas_gbq", "tests", "noxfile.py", "setup.py"] -DEFAULT_PYTHON_VERSION = "3.8" +DEFAULT_PYTHON_VERSION = "3.10" UNIT_TEST_PYTHON_VERSIONS = ["3.8", "3.9", "3.10", "3.11", "3.12"] From 32bcf6daa711bdb864bae4c68b2162489eaf8396 Mon Sep 17 00:00:00 2001 From: Anthonios Partheniou Date: Fri, 7 Mar 2025 18:20:41 +0000 Subject: [PATCH 2/2] set default_python_version to 3.10 --- .github/workflows/unittest.yml | 2 +- owlbot.py | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/unittest.yml b/.github/workflows/unittest.yml index ece9c4c6..107eac6b 100644 --- a/.github/workflows/unittest.yml +++ b/.github/workflows/unittest.yml @@ -45,7 +45,7 @@ jobs: - name: Setup Python uses: actions/setup-python@v5 with: - python-version: "3.8" + python-version: "3.10" - name: Install coverage run: | python -m pip install --upgrade setuptools pip wheel diff --git a/owlbot.py b/owlbot.py index e50b9e9e..96a795c3 100644 --- a/owlbot.py +++ b/owlbot.py @@ -34,6 +34,7 @@ } extras = ["tqdm", "geopandas"] templated_files = common.py_library( + default_python_version="3.10", unit_test_python_versions=["3.8", "3.9", "3.10", "3.11", "3.12"], system_test_python_versions=["3.8", "3.9", "3.10", "3.11", "3.12"], cov_level=96,