Skip to content

Commit

Permalink
bump material deps and make a shortcut for how to do it
Browse files Browse the repository at this point in the history
Signed-off-by: clux <[email protected]>
  • Loading branch information
clux committed Oct 3, 2023
1 parent 81906b2 commit 4e0c660
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 18 deletions.
13 changes: 13 additions & 0 deletions justfile
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
export PIP_REQUIRE_VIRTUALENV := "true"

default:
@just --list --unsorted --color=always | rg -v " default"
open := if os() == "macos" { "open" } else { "xdg-open" }
Expand Down Expand Up @@ -27,3 +29,14 @@ dynprops:
linkcheck:
lychee --github-token=$GITHUB_TOKEN https://kube.rs
lychee --github-token=$GITHUB_TOKEN docs/controllers/*.md

# helper to try-upgrade everything in the pip environment
upgrade:
#!/usr/bin/env bash
rm -rf ./venv
python3 -m venv venv
source venv/bin/activate
pip3 install mkdocs-material=="9.*"
pip3 install mkdocs-roamlinks-plugin
pip3 install mkdocs-exclude
pip3 freeze > requirements.txt
29 changes: 11 additions & 18 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,37 +1,30 @@
Babel==2.12.1
beautifulsoup4==4.12.2
certifi>=2023.7.22
charset-normalizer==3.2.0
Babel==2.13.0
certifi==2023.7.22
charset-normalizer==3.3.0
click==8.1.7
colorama==0.4.6
cssselect==1.2.0
ghp-import==2.1.0
idna==3.4
Jinja2==3.1.2
lxml==4.9.3
Markdown==3.4.4
markdown2==2.4.10
MarkupSafe==2.1.3
mergedeep==1.3.4
mkdocs==1.5.2
mkdocs==1.5.3
mkdocs-exclude==1.0.2
mkdocs-material==9.2.2
mkdocs-material-extensions==1.1.1
mkdocs-material==9.4.3
mkdocs-material-extensions==1.2
mkdocs-roamlinks-plugin==0.3.2
packaging==23.1
packaging==23.2
paginate==0.5.6
pathspec==0.11.2
platformdirs==3.10.0
platformdirs==3.11.0
Pygments==2.16.1
pymdown-extensions==10.1
pyquery==2.0.0
pymdown-extensions==10.3
python-dateutil==2.8.2
PyYAML==6.0.1
pyyaml_env_tag==0.1
readtime==3.0.0
regex==2023.8.8
regex==2023.10.3
requests==2.31.0
six==1.16.0
soupsieve==2.4.1
urllib3==2.0.4
urllib3==2.0.6
watchdog==3.0.0

0 comments on commit 4e0c660

Please sign in to comment.