Skip to content

Commit 9a6ef8e

Browse files
authored
Merge pull request #78 from aterrel/76-py13-support
Updates github builder to 3.13
2 parents b1cb4f9 + c2e9dcb commit 9a6ef8e

File tree

3 files changed

+14
-12
lines changed

3 files changed

+14
-12
lines changed

.github/workflows/build-gh-pages.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,10 @@ jobs:
1313
steps:
1414
- uses: actions/checkout@v2
1515

16-
- name: Set up Python 3.7
16+
- name: Set up Python 3.12.8
1717
uses: actions/setup-python@v1
1818
with:
19-
python-version: 3.7
19+
python-version: 3.12.8
2020

2121
- name: Install dependencies
2222
run: |

.github/workflows/checklink.yml

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
name: Check Markdown links
22

3-
on: [pull_request]
3+
on: workflow_dispatch
4+
# on: [pull_request]
45

56
jobs:
67
markdown-link-check:

.github/workflows/preview.yml

+10-9
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,14 @@
11
# .github/workflows/preview.yml
22
name: Deploy PR previews
33

4-
on:
5-
pull_request:
6-
types:
7-
- opened
8-
- reopened
9-
- synchronize
10-
- closed
4+
on: workflow_dispatch
5+
6+
# pull_request:
7+
# types:
8+
# - opened
9+
# - reopened
10+
# - synchronize
11+
# - closed
1112

1213
concurrency: preview-${{ github.ref }}
1314

@@ -18,10 +19,10 @@ jobs:
1819
- name: Checkout
1920
uses: actions/checkout@v2
2021

21-
- name: Set up Python 3.7
22+
- name: Set up Python 3.12.8
2223
uses: actions/setup-python@v1
2324
with:
24-
python-version: 3.7
25+
python-version: 3.12.8
2526

2627
- name: Install dependencies
2728
run: |

0 commit comments

Comments
 (0)