Skip to content

Commit b849c3d

Browse files
committed
updates to prevent changes to docs and lint.ymls
1 parent 868564e commit b849c3d

File tree

4 files changed

+15
-5
lines changed

4 files changed

+15
-5
lines changed

.github/workflows/docs.yml

Lines changed: 2 additions & 2 deletions
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.13"
15+
python-version: "3.10"
1616
- name: Install nox
1717
run: |
1818
python -m pip install --upgrade setuptools pip wheel
@@ -28,7 +28,7 @@ jobs:
2828
- name: Setup Python
2929
uses: actions/setup-python@v5
3030
with:
31-
python-version: "3.13"
31+
python-version: "3.10"
3232
- name: Install nox
3333
run: |
3434
python -m pip install --upgrade setuptools pip wheel

.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.13"
15+
python-version: "3.10"
1616
- name: Install nox
1717
run: |
1818
python -m pip install --upgrade setuptools pip wheel

noxfile.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@
8989
# TODO: the linting process still uses python 3.8.
9090
# As soon as that gets upgraded, we should be able to revert this session
9191
# to using the DEFAULT_PYTHON_VERSION.
92-
@nox.session(python="3.8")
92+
@nox.session(python=DEFAULT_PYTHON_VERSION)
9393
def lint(session):
9494
"""Run linters.
9595

owlbot.py

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,17 @@
3434
"pandas": "https://pandas.pydata.org/pandas-docs/stable/"
3535
},
3636
)
37-
s.move(templated_files, excludes=["docs/multiprocessing.rst", "README.rst", ".github/workflows/unittest.yml", "noxfile.py"])
37+
s.move(
38+
templated_files,
39+
excludes=[
40+
"docs/multiprocessing.rst",
41+
"README.rst",
42+
".github/workflows/unittest.yml",
43+
".github/workflows/docs.yml", # to avoid overwriting python version
44+
".github/workflows/lint.yml", # to avoid overwriting python version
45+
"noxfile.py",
46+
]
47+
)
3848

3949
# ----------------------------------------------------------------------------
4050
# Fixup files

0 commit comments

Comments
 (0)