Skip to content

Commit 22526c1

Browse files
committedJan 17, 2025
fixing
1 parent 0b5698a commit 22526c1

File tree

5 files changed

+4
-6
lines changed

5 files changed

+4
-6
lines changed
 

‎.github/sync-repo-settings.yaml

-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@ branchProtectionRules:
1111
- 'cla/google'
1212
- 'docs'
1313
- 'lint'
14-
- 'unit (3.8)'
1514
- 'unit (3.9)'
1615
- 'unit (3.10)'
1716
- 'unit (3.11)'

‎.github/workflows/lint.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
- name: Setup Python
1313
uses: actions/setup-python@v5
1414
with:
15-
python-version: "3.8"
15+
python-version: "3.9"
1616
- name: Install nox
1717
run: |
1818
python -m pip install --upgrade setuptools pip wheel

‎docs/conf.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,9 @@
2424
# All configuration values have a default; values that are commented out
2525
# serve to show the default.
2626

27-
import sys
2827
import os
2928
import shlex
29+
import sys
3030

3131
# If extensions (or modules to document with autodoc) are in another directory,
3232
# add these directories to sys.path here. If the directory is relative to the

‎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.10"
35+
DEFAULT_PYTHON_VERSION = "3.9"
3636

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

‎samples/snippets/noxfile.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@
2222

2323
import nox
2424

25-
2625
# WARNING - WARNING - WARNING - WARNING - WARNING
2726
# WARNING - WARNING - WARNING - WARNING - WARNING
2827
# DO NOT EDIT THIS FILE EVER!
@@ -89,7 +88,7 @@ def get_pytest_env_vars() -> Dict[str, str]:
8988

9089
# DO NOT EDIT - automatically generated.
9190
# All versions used to test samples.
92-
ALL_VERSIONS = ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
91+
ALL_VERSIONS = ["3.9", "3.10", "3.11", "3.12", "3.13"]
9392

9493
# Any default versions that should be ignored.
9594
IGNORED_VERSIONS = TEST_CONFIG["ignored_versions"]

0 commit comments

Comments
 (0)