From b16869b5bfe934b43152a2a4592e7c2001e631f6 Mon Sep 17 00:00:00 2001 From: Brandon Sutherland Date: Wed, 29 Jan 2025 19:39:05 -0700 Subject: [PATCH] Added requirements.txt --- .github/workflows/deploy.yml | 3 ++- README.md | 2 +- requirements.txt | 3 +++ 3 files changed, 6 insertions(+), 2 deletions(-) create mode 100644 requirements.txt diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index ecd0cb0..0b6367d 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -23,7 +23,8 @@ jobs: - name: Install dependencies run: | - pip install mkdocs-material + python -m pip install --upgrade pip + pip install -r requirements.txt - name: Build and Deploy run: mkdocs gh-deploy --force diff --git a/README.md b/README.md index df15fcc..f542b0e 100644 --- a/README.md +++ b/README.md @@ -11,7 +11,7 @@ This website is built with Material for MkDocs. The guide below describes how to ## Install mkdocs ``` bash -pip install mkdocs-material +pip install -r requirements.txt ``` ## Run the mkdocs Server diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000..f79c751 --- /dev/null +++ b/requirements.txt @@ -0,0 +1,3 @@ +mkdocs +mkdocs-material +pymdown-extensions