Skip to content
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
Show all changes
39 commits
Select commit Hold shift + click to select a range
12a540b
feat: Adds Python 3.13 support
chalmerlowe Oct 22, 2025
e316bf2
🦉 Updates from OwlBot post-processor
gcf-owl-bot[bot] Oct 22, 2025
510e019
fix(kokoro): Preserve NOX_SESSION in presubmit.cfg
chalmerlowe Oct 23, 2025
294ecf0
Apply suggestion from @chalmerlowe
chalmerlowe Oct 23, 2025
52d5471
🦉 Updates from OwlBot post-processor
gcf-owl-bot[bot] Oct 23, 2025
1aa2893
fix(kokoro): Update path to presubmit.cfg in owlbot.py
chalmerlowe Oct 23, 2025
730de17
🦉 Updates from OwlBot post-processor
gcf-owl-bot[bot] Oct 23, 2025
0904f48
Apply suggestion from @chalmerlowe
chalmerlowe Oct 23, 2025
f820d65
Apply suggestion from @chalmerlowe
chalmerlowe Oct 23, 2025
1a48a85
Update owlbot.py
chalmerlowe Oct 23, 2025
66e5030
Update .kokoro/presubmit/presubmit.cfg
chalmerlowe Oct 23, 2025
e0dcd0f
updates owlbot.py and noxfile.py to use 3.10 for system and linting.
chalmerlowe Oct 23, 2025
63ded6f
🦉 Updates from OwlBot post-processor
gcf-owl-bot[bot] Oct 23, 2025
94caad0
updates owlbot.py to try to account for system test
chalmerlowe Oct 23, 2025
396aba4
🦉 Updates from OwlBot post-processor
gcf-owl-bot[bot] Oct 23, 2025
fbc6312
Apply suggestion from @chalmerlowe
chalmerlowe Oct 23, 2025
cca6152
Apply suggestion from @chalmerlowe
chalmerlowe Oct 23, 2025
8cea842
🦉 Updates from OwlBot post-processor
gcf-owl-bot[bot] Oct 23, 2025
002c291
Apply suggestion from @chalmerlowe
chalmerlowe Oct 23, 2025
7412511
Apply suggestion from @chalmerlowe
chalmerlowe Oct 23, 2025
8e92bfc
Apply suggestion from @chalmerlowe
chalmerlowe Oct 23, 2025
a9b9a98
🦉 Updates from OwlBot post-processor
gcf-owl-bot[bot] Oct 23, 2025
d020cff
Apply suggestion from @chalmerlowe
chalmerlowe Oct 23, 2025
b8b5a28
Apply suggestion from @chalmerlowe
chalmerlowe Oct 23, 2025
35cd2c7
🦉 Updates from OwlBot post-processor
gcf-owl-bot[bot] Oct 23, 2025
c00b7e0
Merge branch 'feat/add-python-3.13' of https://github.com/googleapis/…
gcf-owl-bot[bot] Oct 23, 2025
c1ccaa8
Apply suggestion from @chalmerlowe
chalmerlowe Oct 23, 2025
0cea524
updates lint version to match default of 3.10
chalmerlowe Oct 23, 2025
c65a660
updates system test version to match default of 3.10
chalmerlowe Oct 23, 2025
f487319
🦉 Updates from OwlBot post-processor
gcf-owl-bot[bot] Oct 23, 2025
e6db188
Merge branch 'feat/add-python-3.13' of https://github.com/googleapis/…
gcf-owl-bot[bot] Oct 23, 2025
80203e3
🦉 Updates from OwlBot post-processor
gcf-owl-bot[bot] Oct 23, 2025
09daf39
Merge branch 'feat/add-python-3.13' of https://github.com/googleapis/…
gcf-owl-bot[bot] Oct 23, 2025
858e2f9
🦉 Updates from OwlBot post-processor
gcf-owl-bot[bot] Oct 23, 2025
0a0fad7
Merge branch 'feat/add-python-3.13' of https://github.com/googleapis/…
gcf-owl-bot[bot] Oct 23, 2025
ba92f10
updates lint version to match default of 3.10 redux
chalmerlowe Oct 23, 2025
313059f
🦉 Updates from OwlBot post-processor
gcf-owl-bot[bot] Oct 23, 2025
6c71c95
modified the owlbot to take advantage of a capability in common.py_li…
chalmerlowe Oct 23, 2025
31c30bf
🦉 Updates from OwlBot post-processor
gcf-owl-bot[bot] Oct 23, 2025
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
11 changes: 11 additions & 0 deletions owlbot.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,17 @@
)
s.move(templated_files, excludes=["docs/multiprocessing.rst", "README.rst"])

s.replace(
".kokoro/presubmit.cfg",
"""# Format: //devtools/kokoro/config/proto/build.proto""",
"""# Format: //devtools/kokoro/config/proto/build.proto

env_vars: {
key: "NOX_SESSION"
value: "system-3.12 blacken mypy format"
}""",
)

python.py_samples(skip_readmes=True)

s.replace(
Expand Down
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,7 @@
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Operating System :: OS Independent",
"Topic :: Internet",
],
Expand Down