From 36327d1e311379612da2d982eb269fece9a020ab Mon Sep 17 00:00:00 2001 From: Alexander Hamilton Date: Tue, 17 Mar 2026 16:17:21 -0700 Subject: [PATCH 1/3] Add requirements.txt with initial package dependencies --- requirements.txt | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 requirements.txt diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000..8e4e79f --- /dev/null +++ b/requirements.txt @@ -0,0 +1,31 @@ +babel==2.18.0 +backrefs==6.2 +certifi==2026.2.25 +charset-normalizer==3.4.6 +click==8.3.1 +colorama==0.4.6 +ghp-import==2.1.0 +idna==3.11 +Jinja2==3.1.6 +Markdown==3.10.2 +MarkupSafe==3.0.3 +mergedeep==1.3.4 +mkdocs==1.6.1 +mkdocs-get-deps==0.2.2 +mkdocs-glightbox==0.5.2 +mkdocs-material==9.7.5 +mkdocs-material-extensions==1.3.1 +packaging==26.0 +paginate==0.5.7 +pathspec==1.0.4 +platformdirs==4.9.4 +Pygments==2.19.2 +pymdown-extensions==10.21 +python-dateutil==2.9.0.post0 +PyYAML==6.0.3 +pyyaml_env_tag==1.1 +requests==2.32.5 +selectolax==0.4.7 +six==1.17.0 +urllib3==2.6.3 +watchdog==6.0.0 \ No newline at end of file From 5e246e5d4a525ed01c9706943ba654bfe0148ec5 Mon Sep 17 00:00:00 2001 From: Alexander Hamilton Date: Tue, 17 Mar 2026 16:18:44 -0700 Subject: [PATCH 2/3] update readme to reflect requirements.txt --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 6bb2641..9948d66 100644 --- a/README.md +++ b/README.md @@ -8,6 +8,7 @@ Clone repo ```bash git clone https://github.com/Slugbotics/slugbotics-material.git +cd ./slugbotics-material ``` ### Create venv @@ -25,7 +26,7 @@ source venv/bin/activate ### Install mkdocs-material & mkdocs-glightbox ```bash -pip3 install mkdocs-material mkdocs-glightbox +pip3 install -r requirements.txt ``` ### Test run site From 9d7fa6f8d44b9392c8dfcdf0efe732476bea21af Mon Sep 17 00:00:00 2001 From: Alexander Hamilton <65139378+GalexY727@users.noreply.github.com> Date: Tue, 24 Mar 2026 14:25:16 -0700 Subject: [PATCH 3/3] Potential fix for pull request finding Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com> --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 9948d66..e52d37d 100644 --- a/README.md +++ b/README.md @@ -23,7 +23,7 @@ python3 -m venv venv source venv/bin/activate ``` -### Install mkdocs-material & mkdocs-glightbox +### Install Python dependencies ```bash pip3 install -r requirements.txt