-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: Merge branch 'main' into iss-129
- Loading branch information
Showing
25 changed files
with
1,732 additions
and
1,221 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
name: docs | ||
on: | ||
workflow_dispatch: | ||
release: | ||
types: | ||
- published | ||
push: | ||
branches: | ||
- main | ||
paths: | ||
- "docs/**" | ||
- "**.md" | ||
- .github/workflows/docs-mkdocs.yml | ||
- mkdocs.yml | ||
|
||
jobs: | ||
mkdocs: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 0 | ||
- uses: CCBR/actions/mkdocs-mike@main | ||
with: | ||
github-token: ${{ github.token }} |
This file was deleted.
Oops, something went wrong.
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
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 |
---|---|---|
@@ -1,34 +1,13 @@ | ||
Babel==2.8.0 | ||
click==7.1.2 | ||
future==0.18.2 | ||
gitdb==4.0.5 | ||
GitPython==3.1.7 | ||
htmlmin==0.1.12 | ||
importlib-metadata==1.7.0 | ||
Jinja2==2.11.2 | ||
joblib==0.16.0 | ||
jsmin==3.0.0 | ||
livereload==2.6.1 | ||
lunr==0.5.8 | ||
Markdown==3.2.2 | ||
MarkupSafe==1.1.1 | ||
mkdocs==1.1.2 | ||
mkdocs-awesome-pages-plugin==2.2.1 | ||
mkdocs-git-revision-date-localized-plugin==0.7 | ||
mkdocs | ||
#https://pypi.org/project/mkdocs-git-revision-date-localized-plugin/ | ||
mkdocs-git-revision-date-localized-plugin | ||
#https://pypi.org/project/mkdocs-minify-plugin/ | ||
mkdocs-minify-plugin | ||
#https://pypi.org/project/mkdocs-git-revision-date-plugin/ | ||
mkdocs-git-revision-date-plugin | ||
#https://pypi.org/project/mkdocs-material/ | ||
mkdocs-material | ||
#https://pypi.org/project/mkdocs-material-extensions/ | ||
mkdocs-material-extensions | ||
mkdocs-minify-plugin==0.3.0 | ||
mkdocs-redirects==1.0.1 | ||
nltk==3.5 | ||
Pygments==2.6.1 | ||
pymdown-extensions==7.1 | ||
pytz==2020.1 | ||
PyYAML==5.3.1 | ||
regex==2020.7.14 | ||
six==1.15.0 | ||
smmap==3.0.4 | ||
tornado==6.0.4 | ||
tqdm==4.48.2 | ||
zipp==3.1.0 | ||
mkdocs-git-revision-date-plugin | ||
#https://github.com/jimporter/mike | ||
mike |
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 |
---|---|---|
@@ -0,0 +1,16 @@ | ||
#!/usr/bin/env python | ||
import os | ||
import re | ||
import sys | ||
from src.renee.__main__ import main | ||
|
||
# add script directory to the path to allow the CLI to work out-of-the-box | ||
# without the need to install it via pip first | ||
SCRIPT_DIR = os.path.join(os.path.dirname(os.path.abspath(__file__)), "src", "renee") | ||
sys.path.append(SCRIPT_DIR) | ||
|
||
if ( | ||
__name__ == "__main__" | ||
): # this block is adapted from the executable file created by `pip install` | ||
sys.argv[0] = re.sub(r"(-script\.pyw|\.exe)?$", "", sys.argv[0]) | ||
sys.exit(main()) |
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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Oops, something went wrong.