Skip to content
This repository was archived by the owner on Apr 1, 2026. It is now read-only.

Commit 3cb51ad

Browse files
committed
updated default python version
1 parent 999a57f commit 3cb51ad

9 files changed

Lines changed: 9 additions & 9 deletions

File tree

.github/workflows/conformance.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
strategy:
2626
matrix:
2727
test-version: [ "v0.0.4" ]
28-
py-version: [ 3.9 ]
28+
py-version: [ 3.13 ]
2929
client-type: [ "async", "sync"]
3030
# None of the clients currently support reverse scans, execute query plan refresh, retry info, or routing cookie
3131
include:

.github/workflows/lint.yml

Lines changed: 1 addition & 1 deletion
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.9"
15+
python-version: "3.13"
1616
- name: Install nox
1717
run: |
1818
python -m pip install --upgrade setuptools pip wheel

.github/workflows/mypy.yml

Lines changed: 1 addition & 1 deletion
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.9"
15+
python-version: "3.13"
1616
- name: Install nox
1717
run: |
1818
python -m pip install --upgrade setuptools pip wheel

.github/workflows/system_emulated.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
- name: Setup Python
1818
uses: actions/setup-python@v5
1919
with:
20-
python-version: '3.9'
20+
python-version: '3.13'
2121

2222
- name: Setup GCloud SDK
2323
uses: google-github-actions/setup-gcloud@v2.1.1

.github/workflows/unittest.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ jobs:
4545
- name: Setup Python
4646
uses: actions/setup-python@v5
4747
with:
48-
python-version: "3.9"
48+
python-version: "3.13"
4949
- name: Install coverage
5050
run: |
5151
python -m pip install --upgrade setuptools pip wheel

google/cloud/bigtable/data/exceptions.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ def __init__(self, message, excs):
9090
# apply index header
9191
if idx != 0:
9292
message_parts.append(
93-
f"+---------------- {str(idx+1).rjust(2)} ----------------"
93+
f"+---------------- {str(idx + 1).rjust(2)} ----------------"
9494
)
9595
cause = e.__cause__
9696
# if this exception was had a cause, print the cause first

google/cloud/bigtable/data/row.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -190,7 +190,7 @@ def __str__(self) -> str:
190190
elif len(cell_list) == 1:
191191
line.append(f"[{cell_list[0]}],")
192192
else:
193-
line.append(f"[{cell_list[0]}, (+{len(cell_list)-1} more)],")
193+
line.append(f"[{cell_list[0]}, (+{len(cell_list) - 1} more)],")
194194
output.append("".join(line))
195195
output.append("}")
196196
return "\n".join(output)

mypy.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[mypy]
2-
python_version = 3.9
2+
python_version = 3.13
33
namespace_packages = True
44
check_untyped_defs = True
55
warn_unreachable = True

noxfile.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
ISORT_VERSION = "isort==5.11.0"
3333
LINT_PATHS = ["docs", "google", "tests", "noxfile.py", "setup.py"]
3434

35-
DEFAULT_PYTHON_VERSION = "3.9"
35+
DEFAULT_PYTHON_VERSION = "3.13"
3636

3737
UNIT_TEST_PYTHON_VERSIONS: List[str] = [
3838
"3.7",

0 commit comments

Comments
 (0)