-
Notifications
You must be signed in to change notification settings - Fork 113
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
🐞 fix: ModuleNotFoundError: No module named 'pkg_resources' #33
- Loading branch information
1 parent
fcc5485
commit 7c8c719
Showing
4 changed files
with
16 additions
and
7 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 |
---|---|---|
|
@@ -93,11 +93,11 @@ jobs: | |
- name: build documentation | ||
run: | | ||
poetry install -E doc | ||
poetry run mkdocs build | ||
mkdocs build | ||
git config --global user.name Docs deploy | ||
git config --global user.email [email protected] | ||
poetry run mike deploy -p -f --ignore "`poetry version --short`.dev" | ||
poetry run mike set-default -p "`poetry version --short`.dev" | ||
mike deploy -p -f --ignore "`poetry version --short`.dev" | ||
mike set-default -p "`poetry version --short`.dev" | ||
- name: Build wheels and source tarball | ||
run: | | ||
|
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 |
---|---|---|
|
@@ -62,11 +62,11 @@ jobs: | |
- name: publish documentation | ||
run: | | ||
poetry install -E doc | ||
poetry run mkdocs build | ||
mkdocs build | ||
git config --global user.name Docs deploy | ||
git config --global user.email [email protected] | ||
poetry run mike deploy -p -f --ignore `poetry version --short` latest | ||
poetry run mike set-default -p `poetry version --short` | ||
mike deploy -p -f --ignore `poetry version --short` latest | ||
mike set-default -p `poetry version --short` | ||
- name: Build wheels and source tarball | ||
run: | | ||
|
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