Skip to content

Commit

Permalink
build(docs): Use locked requirements file
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelbrewer committed Mar 25, 2022
1 parent a082d44 commit 26e41e7
Show file tree
Hide file tree
Showing 3 changed files with 37 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
run: pip install -U pip

- name: Install mkdocs dependencies
run: make dev
run: pip install -r requirements.txt

- name: Deploy to github pages
run: make deploy
run: mkdocs gh-deploy --force
3 changes: 3 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,9 @@ serve:
build:
pipenv run mkdocs build

update-requirements:
pipenv lock -r > requirements.txt

deploy:
pipenv run mkdocs gh-deploy --force

Expand Down
32 changes: 32 additions & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
#
# These requirements were autogenerated by pipenv
# To regenerate from the project's Pipfile, run:
#
# pipenv lock --requirements
#

-i https://pypi.org/simple
click==8.0.4; python_version >= '3.6'
ghp-import==2.0.2
gitdb==4.0.9; python_version >= '3.6'
gitpython==3.1.27; python_version >= '3.7'
importlib-metadata==4.11.3; python_version < '3.10'
jinja2==3.0.3; python_version >= '3.6'
markdown==3.3.6; python_version >= '3.6'
markupsafe==2.1.1; python_version >= '3.7'
mergedeep==1.3.4; python_version >= '3.6'
mkdocs-git-revision-date-plugin==0.3.2
mkdocs-material-extensions==1.0.3; python_version >= '3.6'
mkdocs-material==8.2.7
mkdocs==1.2.3; python_version >= '3.6'
packaging==21.3; python_version >= '3.6'
pygments==2.11.2; python_version >= '3.5'
pymdown-extensions==9.3; python_version >= '3.7'
pyparsing==3.0.7; python_version >= '3.6'
python-dateutil==2.8.2; python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2'
pyyaml-env-tag==0.1; python_version >= '3.6'
pyyaml==6.0; python_version >= '3.6'
six==1.16.0; python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2'
smmap==5.0.0; python_version >= '3.6'
watchdog==2.1.6; python_version >= '3.6'
zipp==3.7.0; python_version >= '3.7'

0 comments on commit 26e41e7

Please sign in to comment.