From b5434a0d8cf175da3ca47a834e7dba1d1e50d87c Mon Sep 17 00:00:00 2001 From: squidfunk Date: Sat, 2 Sep 2023 14:27:00 +0200 Subject: [PATCH] Switched dependencies to compatible release clauses --- Dockerfile | 8 ++++---- requirements.txt | 22 +++++++++++----------- 2 files changed, 15 insertions(+), 15 deletions(-) diff --git a/Dockerfile b/Dockerfile index 5595e842a..9481ff466 100644 --- a/Dockerfile +++ b/Dockerfile @@ -61,10 +61,10 @@ RUN \ && \ if [ "${WITH_PLUGINS}" = "true" ]; then \ pip install --no-cache-dir \ - "mkdocs-minify-plugin>=0.3" \ - "mkdocs-redirects>=1.0" \ - "pillow>=9.0" \ - "cairosvg>=2.5"; \ + "mkdocs-minify-plugin~=0.7" \ + "mkdocs-redirects~=1.2" \ + "pillow~=9.4" \ + "cairosvg~=2.6"; \ fi \ && \ if [ -e user-requirements.txt ]; then \ diff --git a/requirements.txt b/requirements.txt index 15045a83a..0eacb9d62 100644 --- a/requirements.txt +++ b/requirements.txt @@ -19,16 +19,16 @@ # IN THE SOFTWARE. # Requirements for core -jinja2>=3.0 -markdown>=3.2 -mkdocs>=1.5.2 -mkdocs-material-extensions>=1.1 -pygments>=2.14 -pymdown-extensions>=9.9.1 +jinja2~=3.0 +markdown~=3.2 +mkdocs~=1.5 +mkdocs-material-extensions~=1.1 +pygments~=2.16 +pymdown-extensions~=10.2 # Requirements for plugins -babel>=2.10.3 -colorama>=0.4 -paginate>=0.5.6 -regex>=2022.4.24 -requests>=2.26 +babel~=2.10 +colorama~=0.4 +paginate~=0.5 +regex~=2022.4 +requests~=2.26