Skip to content

Commit 73c17a3

Browse files
authored
Fix the build. (#211)
* Fix the build. Bumping versions. * Handle new redirect. * New lock format. No package changes.
1 parent 5a13dc9 commit 73c17a3

File tree

6 files changed

+559
-557
lines changed

6 files changed

+559
-557
lines changed

.github/workflows/ci.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -10,20 +10,20 @@ jobs:
1010
name: Test
1111
strategy:
1212
matrix:
13-
python: ["3.8", "3.9", "3.10"]
13+
python: ["3.10", "3.11"]
1414
runs-on: ubuntu-latest
1515
steps:
1616

1717
- name: Check out repository code
18-
uses: actions/checkout@v2
18+
uses: actions/checkout@v3
1919
with:
2020
fetch-depth: 0
2121

2222
- name: Initialize dependencies
2323
uses: Robpol86/actions-init-deps-py@v3
2424
with:
2525
cache-buster: "${{ join(matrix.*, '|') }}"
26-
poetry-version: "1.2.1"
26+
poetry-version: "1.4.0"
2727
python-version: "${{ matrix.python }}"
2828

2929
- name: Run tests

.github/workflows/deploy.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -21,14 +21,14 @@ jobs:
2121
runs-on: ubuntu-latest
2222
steps:
2323
- name: Check out repository code
24-
uses: actions/checkout@v2
24+
uses: actions/checkout@v3
2525
with:
2626
fetch-depth: 0
2727
- name: Initialize dependencies
2828
uses: Robpol86/actions-init-deps-py@v3
2929
with:
3030
no-dev: "true"
31-
poetry-version: "1.2.1"
31+
poetry-version: "1.4.0"
3232
python-version: "${{ env.PYTHON_VERSION }}"
3333
- name: Build docs
3434
env:

.github/workflows/diff.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -30,14 +30,14 @@ jobs:
3030
runs-on: ubuntu-latest
3131
steps:
3232
- name: Check out repository code
33-
uses: actions/checkout@v2
33+
uses: actions/checkout@v3
3434
with:
3535
fetch-depth: 0
3636
- name: Initialize dependencies
3737
uses: Robpol86/actions-init-deps-py@v3
3838
with:
3939
no-dev: "true"
40-
poetry-version: "1.2.1"
40+
poetry-version: "1.4.0"
4141
python-version: "${{ env.PYTHON_VERSION }}"
4242
- name: Build docs
4343
env:

.github/workflows/linkcheck.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,14 +12,14 @@ jobs:
1212
steps:
1313

1414
- name: Check out repository code
15-
uses: actions/checkout@v2
15+
uses: actions/checkout@v3
1616
with:
1717
fetch-depth: 0
1818

1919
- name: Initialize dependencies
2020
uses: Robpol86/actions-init-deps-py@v3
2121
with:
22-
poetry-version: "1.2.1"
22+
poetry-version: "1.4.0"
2323
python-version: "3.10"
2424

2525
- name: Run linkcheck

docs/conf.py

+1
Original file line numberDiff line numberDiff line change
@@ -93,6 +93,7 @@
9393
r"https://www.amazon.com/": "https://www.amazon.com/[^/]+/dp/",
9494
r"https://www.apc.com/us/en/product/\w+$": "https://www.apc.com/us/en/product/",
9595
r"https://www.mcmaster.com/": "https://www.mcmaster.com/ShellHomepageRefresh[.]aspx[?]searchTerm=",
96+
r"https://www.reddit.com/r/": r"https://www.reddit.com/r/.*?rdt=[\d]+",
9697
r"https://youtu.be/\w+$": "https://www.youtube.com/watch[?]",
9798
}
9899
linkcheck_exclude_documents = [

0 commit comments

Comments
 (0)