From 357d7a9883c901f661ae07c34a919c95bef3a471 Mon Sep 17 00:00:00 2001 From: Troy Lindsay <1863581-tlindsay42@users.noreply.gitlab.com> Date: Tue, 21 Jul 2020 09:58:38 -0500 Subject: [PATCH] Move dependencies to requirements.txt --- .gitlab-ci.yml | 5 +---- requirements.txt | 6 ++++++ 2 files changed, 7 insertions(+), 4 deletions(-) create mode 100644 requirements.txt diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index ac64b08..bfe27af 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,10 +1,7 @@ image: python:3.8-buster before_script: - - pip install mkdocs - # Add your custom theme if not inside a theme_dir - # (https://github.com/mkdocs/mkdocs/wiki/MkDocs-Themes) - # - pip install mkdocs-material + - pip install -r requirements.txt test: stage: test diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000..c18b9e9 --- /dev/null +++ b/requirements.txt @@ -0,0 +1,6 @@ +# Documentation static site generator & deployment tool +mkdocs>=1.1.2 + +# Add your custom theme if not inside a theme_dir +# (https://github.com/mkdocs/mkdocs/wiki/MkDocs-Themes) +# mkdocs-material>=5.4.0 -- GitLab