-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1553 from ScilifelabDataCentre/dev
New release v2.8.0 - No more Python 3.7
- Loading branch information
Showing
52 changed files
with
3,773 additions
and
111 deletions.
There are no files selected for viewing
Validating CODEOWNERS rules …
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
# Team Hermes are the owners of all files in this repository | ||
* @ScilifelabDataCentre/teamhermes |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,6 @@ | ||
*.html | ||
dds_web/static/css | ||
dds_web/static/node_modules | ||
# Would like to enable this but prettier isn't correctly formatting grid tables for pandoc | ||
# We need grid table markdown due to having tables with multi-column/row spans | ||
doc/technical-overview.md |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
# For Linux and MacOS users only and assumes brew is already installed | ||
TECH_MARKDOWN_FILE := doc/technical-overview.md | ||
TECH_OVERVIEW_PDF := dds_web/static/dds-technical-overview.pdf | ||
TROUBLE_MARKDOWN_FILE := doc/troubleshooting.md | ||
TROUBLE_PDF := dds_web/static/dds-troubleshooting.pdf | ||
|
||
install_pandoc: | ||
brew install pandoc basictex librsvg | ||
|
||
update_tlmgr: | ||
tlmgr update --self | ||
tlmgr install cm-super fontaxes lato pdflscape xkeyval | ||
|
||
build_tech_overview_pdf: update_tlmgr $(TECH_MARKDOWN_FILE) | ||
pandoc $(TECH_MARKDOWN_FILE) -o $(TECH_OVERVIEW_PDF) | ||
|
||
build_troubleshooting_pdf: update_tlmgr $(TROUBLE_MARKDOWN_FILE) | ||
pandoc $(TROUBLE_MARKDOWN_FILE) -o $(TROUBLE_PDF) | ||
|
||
build_docs: build_tech_overview_pdf build_troubleshooting_pdf | ||
|
||
.PHONY: update_tlmgr build_tech_overview_pdf build_troubleshooting_pdf build_docs all |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.