Skip to content

Commit

Permalink
Fix the build. (#211)
Browse files Browse the repository at this point in the history
* Fix the build.

Bumping versions.

* Handle new redirect.

* New lock format.

No package changes.
  • Loading branch information
Robpol86 authored Apr 2, 2023
1 parent 5a13dc9 commit 73c17a3
Show file tree
Hide file tree
Showing 6 changed files with 559 additions and 557 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,20 +10,20 @@ jobs:
name: Test
strategy:
matrix:
python: ["3.8", "3.9", "3.10"]
python: ["3.10", "3.11"]
runs-on: ubuntu-latest
steps:

- name: Check out repository code
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
fetch-depth: 0

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

- name: Run tests
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,14 +21,14 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Check out repository code
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Initialize dependencies
uses: Robpol86/actions-init-deps-py@v3
with:
no-dev: "true"
poetry-version: "1.2.1"
poetry-version: "1.4.0"
python-version: "${{ env.PYTHON_VERSION }}"
- name: Build docs
env:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/diff.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,14 +30,14 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Check out repository code
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Initialize dependencies
uses: Robpol86/actions-init-deps-py@v3
with:
no-dev: "true"
poetry-version: "1.2.1"
poetry-version: "1.4.0"
python-version: "${{ env.PYTHON_VERSION }}"
- name: Build docs
env:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/linkcheck.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,14 @@ jobs:
steps:

- name: Check out repository code
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
fetch-depth: 0

- name: Initialize dependencies
uses: Robpol86/actions-init-deps-py@v3
with:
poetry-version: "1.2.1"
poetry-version: "1.4.0"
python-version: "3.10"

- name: Run linkcheck
Expand Down
1 change: 1 addition & 0 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,7 @@
r"https://www.amazon.com/": "https://www.amazon.com/[^/]+/dp/",
r"https://www.apc.com/us/en/product/\w+$": "https://www.apc.com/us/en/product/",
r"https://www.mcmaster.com/": "https://www.mcmaster.com/ShellHomepageRefresh[.]aspx[?]searchTerm=",
r"https://www.reddit.com/r/": r"https://www.reddit.com/r/.*?rdt=[\d]+",
r"https://youtu.be/\w+$": "https://www.youtube.com/watch[?]",
}
linkcheck_exclude_documents = [
Expand Down
Loading

0 comments on commit 73c17a3

Please sign in to comment.