-
Notifications
You must be signed in to change notification settings - Fork 74
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Remove mkdocs-material from requirements.txt (#109)
* remove mkdocs-material from requirements.txt as it is only used to generate the documentation site of this plugin, not as actual code dependency * syntaxx * stack overflow brainz
- Loading branch information
1 parent
a007de2
commit d2891d8
Showing
2 changed files
with
3 additions
and
2 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 |
---|---|---|
@@ -1,4 +1,5 @@ | ||
#!/bin/bash | ||
|
||
python -m pip install --upgrade pip | ||
pip install -r requirements.txt | ||
pip install -r requirements.txt | ||
pip install mkdocs-material==9.2.3 |
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,6 +1,6 @@ | ||
flake8>=3.7.8 | ||
mkdocs>=1.2.3 | ||
mkdocs-material>=5.1.0 | ||
mkdocs-git-authors-plugin==0.3.2 | ||
mkdocs-git-revision-date-localized-plugin==0.5.0 | ||
python-slugify==4.0.1 | ||
importlib-metadata==4.13.0 |