Skip to content

Commit 5762960

Browse files
committed
owlbot changes
1 parent aad371e commit 5762960

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

.github/workflows/docs.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.10"
15+
python-version: "3.9"
1616
- name: Install nox
1717
run: |
1818
python -m pip install --upgrade setuptools pip wheel

docs/conf.py

Lines changed: 1 addition & 1 deletion
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
2728
import os
2829
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

samples/snippets/noxfile.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@
2222

2323
import nox
2424

25+
2526
# WARNING - WARNING - WARNING - WARNING - WARNING
2627
# WARNING - WARNING - WARNING - WARNING - WARNING
2728
# DO NOT EDIT THIS FILE EVER!
@@ -88,7 +89,7 @@ def get_pytest_env_vars() -> Dict[str, str]:
8889

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

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

0 commit comments

Comments
 (0)