-
Notifications
You must be signed in to change notification settings - Fork 111
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
🐳 chore: try to fix github action failure
ImportError: cannot import name 'Sequence' from 'collections' (/opt/hostedtoolcache/Python/3.11.5/x64/lib/python3.11/collections/__init__.py) this is caused by mkdocs on py3.10
- Loading branch information
1 parent
7c8c719
commit 6c82f2a
Showing
4 changed files
with
5 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -20,7 +20,7 @@ jobs: | |
|
||
strategy: | ||
matrix: | ||
python-versions: ['3.11'] | ||
python-versions: ['3.9'] | ||
|
||
# map step outputs to job outputs so they can be share among jobs | ||
outputs: | ||
|
@@ -61,7 +61,7 @@ jobs: | |
|
||
- name: publish documentation | ||
run: | | ||
poetry install -E dev | ||
poetry install -E doc | ||
poetry run mkdocs build | ||
git config --global user.name Docs deploy | ||
git config --global user.email [email protected] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters