From 86adb6800725dc15bcfda7dd1de0d1e3cf078ae5 Mon Sep 17 00:00:00 2001 From: Jon Date: Mon, 22 May 2023 17:58:54 +0930 Subject: [PATCH 1/4] feat(python): add all requirements for website !7 --- requirements.txt | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 requirements.txt diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000..34e5b3b --- /dev/null +++ b/requirements.txt @@ -0,0 +1,11 @@ +Jinja2==3.0.3 +mkdocs==1.2.3 +mkdocs-minify-plugin==0.5.0 +mkdocs-material-extensions==1.0.3 +wheel +mkdocs-material==8.1.7 +Pygments==2.13.0 +# pymdown-extensions==9.1 fails +pymdown-extensions==9.5 +./website-template/custom-plugins/mkdocs-plugin-tags +mkdocs-git-revision-date-localized-plugin==0.11.1 -- 2.49.0 From b710b7a1dda2322940cff2090e7544e8ed473fd1 Mon Sep 17 00:00:00 2001 From: Jon Date: Tue, 23 May 2023 10:13:57 +0930 Subject: [PATCH 2/4] ci(git): submodule update !6 nofusscomputing/projects/gitlab-ci!26 --- gitlab-ci | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gitlab-ci b/gitlab-ci index 588956b..3324ce2 160000 --- a/gitlab-ci +++ b/gitlab-ci @@ -1 +1 @@ -Subproject commit 588956b27ec8973bf8a0ce39566f1ec07a0c2f6b +Subproject commit 3324ce20029e780ffb12f21648e6f856d782eb6d -- 2.49.0 From 04fedf49e7211ffdeafe2b9ea472aaf3e038f7ce Mon Sep 17 00:00:00 2001 From: Jon Date: Tue, 23 May 2023 10:17:19 +0930 Subject: [PATCH 3/4] feat(markdown_lint): removed MD linting as there are no md !6 --- .gitlab-ci.yml | 4 ---- 1 file changed, 4 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index c3c6c24..459ae9e 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -17,10 +17,6 @@ include: ref: development file: - conventional_commits/.gitlab-ci.yml - - validation/.gitlab-ci.yml - -Lint Markdown: - extends: .Lint_Markdown re-deploy Website: -- 2.49.0 From 724234138b7c8fbd988e7f187dbedca101634272 Mon Sep 17 00:00:00 2001 From: Jon Date: Tue, 23 May 2023 10:20:18 +0930 Subject: [PATCH 4/4] feat(markdown_lint): re-added md lint job this was added so that ci job will be created as at least one must for other included to work !6 --- .gitlab-ci.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 459ae9e..d126449 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -17,6 +17,10 @@ include: ref: development file: - conventional_commits/.gitlab-ci.yml + - lint/markdown.gitlab-ci.yaml + +Lint Markdown: + extends: .Lint_Markdown re-deploy Website: -- 2.49.0