From d13da576f6e38e48f2ac1d9995ab73ca8e5cff7d Mon Sep 17 00:00:00 2001 From: Mark Bowen <71099842+m-bowen@users.noreply.github.com> Date: Tue, 9 Nov 2021 13:08:39 -0500 Subject: [PATCH 01/10] Update references.md --- resources/references.md | 2 -- 1 file changed, 2 deletions(-) diff --git a/resources/references.md b/resources/references.md index 4214b4b..0f4b833 100644 --- a/resources/references.md +++ b/resources/references.md @@ -9,7 +9,6 @@ Level 3 is an in-depth explanation of the topic. History of Computers -------------------- - ```{list-table} :header-rows: 1 @@ -37,7 +36,6 @@ History of Computers Tools of the Craft ------------------ - ```{list-table} :header-rows: 1 * - Resource From fb06f0e6e7db3f32f98867428a0c893e3a909229 Mon Sep 17 00:00:00 2001 From: Sarah Brown Date: Tue, 9 Nov 2021 15:04:28 -0500 Subject: [PATCH 02/10] Update _config.yml --- _config.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_config.yml b/_config.yml index d7f8057..139dd7f 100644 --- a/_config.yml +++ b/_config.yml @@ -24,7 +24,7 @@ latex: latex_documents: targetname: book.tex -exclude_patterns : ['_data/*', README.md, ignore/*, */README.md] # Patterns to skip when building the book. Can be glob-style (e.g. "*skip.ipynb") +exclude_patterns : ['_data/*', README.md, ignore/*, *README.md] # Patterns to skip when building the book. Can be glob-style (e.g. "*skip.ipynb") ####################################################################################### # Execution settings From aea7b05a7d4fac5a3b1e7230e456f4eab9b17538 Mon Sep 17 00:00:00 2001 From: Sarah Brown Date: Tue, 9 Nov 2021 15:09:02 -0500 Subject: [PATCH 03/10] Update _config.yml --- _config.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_config.yml b/_config.yml index 139dd7f..5215431 100644 --- a/_config.yml +++ b/_config.yml @@ -24,7 +24,7 @@ latex: latex_documents: targetname: book.tex -exclude_patterns : ['_data/*', README.md, ignore/*, *README.md] # Patterns to skip when building the book. Can be glob-style (e.g. "*skip.ipynb") +exclude_patterns : ['_data/*', README.md, ignore/*] # Patterns to skip when building the book. Can be glob-style (e.g. "*skip.ipynb") ####################################################################################### # Execution settings From 57e6968d52c128fab454f9a77554200850134e53 Mon Sep 17 00:00:00 2001 From: Mark Bowen <71099842+m-bowen@users.noreply.github.com> Date: Tue, 9 Nov 2021 15:10:17 -0500 Subject: [PATCH 04/10] Create check_pull_requests_for_deploy --- .../workflows/check_pull_requests_for_deploy | 33 +++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 .github/workflows/check_pull_requests_for_deploy diff --git a/.github/workflows/check_pull_requests_for_deploy b/.github/workflows/check_pull_requests_for_deploy new file mode 100644 index 0000000..64cea1b --- /dev/null +++ b/.github/workflows/check_pull_requests_for_deploy @@ -0,0 +1,33 @@ +# Used rhodyprog4ds repository as a template for setting up the publish file +# Test pull requests without pushing + +name: test-build + +on: + pull_request: + branches: + - main + + +jobs: + deploy-book: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + + # Install dependencies + - name: Set up Python 3.7 + uses: actions/setup-python@v1 + with: + python-version: 3.7 + + - name: Install dependencies + run: | + pip install -r requirements.txt + + # Build book + - name: Build the book + run: | + jupyter-book build . --builder pdfhtml + mv _build/pdf/book.pdf _build/html/coursemanual.pdf + jupyter-book build . From 8cf8b9a764e2e8bdf239038c6f00ccfbd6fc4902 Mon Sep 17 00:00:00 2001 From: Sarah Brown Date: Tue, 9 Nov 2021 15:14:37 -0500 Subject: [PATCH 05/10] Update check_pull_requests_for_deploy --- .github/workflows/check_pull_requests_for_deploy | 2 -- 1 file changed, 2 deletions(-) diff --git a/.github/workflows/check_pull_requests_for_deploy b/.github/workflows/check_pull_requests_for_deploy index 64cea1b..74abfa1 100644 --- a/.github/workflows/check_pull_requests_for_deploy +++ b/.github/workflows/check_pull_requests_for_deploy @@ -5,8 +5,6 @@ name: test-build on: pull_request: - branches: - - main jobs: From fc71794d48057820990302a10cdc463e2b0c30ed Mon Sep 17 00:00:00 2001 From: Mark Bowen <71099842+m-bowen@users.noreply.github.com> Date: Tue, 9 Nov 2021 15:16:33 -0500 Subject: [PATCH 06/10] Rename check_pull_requests_for_deploy to check_pull_requests_for_deploy.yml --- ...ull_requests_for_deploy => check_pull_requests_for_deploy.yml} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename .github/workflows/{check_pull_requests_for_deploy => check_pull_requests_for_deploy.yml} (100%) diff --git a/.github/workflows/check_pull_requests_for_deploy b/.github/workflows/check_pull_requests_for_deploy.yml similarity index 100% rename from .github/workflows/check_pull_requests_for_deploy rename to .github/workflows/check_pull_requests_for_deploy.yml From e0cfe983dfbbbb70b3c7fa72532fa61f9b850074 Mon Sep 17 00:00:00 2001 From: Sarah Brown Date: Sun, 14 Nov 2021 14:45:32 -0500 Subject: [PATCH 07/10] Update check_pull_requests_for_deploy.yml --- .github/workflows/check_pull_requests_for_deploy.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/check_pull_requests_for_deploy.yml b/.github/workflows/check_pull_requests_for_deploy.yml index 74abfa1..637c3fb 100644 --- a/.github/workflows/check_pull_requests_for_deploy.yml +++ b/.github/workflows/check_pull_requests_for_deploy.yml @@ -5,6 +5,7 @@ name: test-build on: pull_request: + branches: [ main ] jobs: From b5df52f21bc25d10931065f53160eec443367be6 Mon Sep 17 00:00:00 2001 From: Mark Bowen <71099842+m-bowen@users.noreply.github.com> Date: Tue, 9 Nov 2021 13:08:39 -0500 Subject: [PATCH 08/10] Update references.md --- resources/references.md | 2 -- 1 file changed, 2 deletions(-) diff --git a/resources/references.md b/resources/references.md index 4214b4b..0f4b833 100644 --- a/resources/references.md +++ b/resources/references.md @@ -9,7 +9,6 @@ Level 3 is an in-depth explanation of the topic. History of Computers -------------------- - ```{list-table} :header-rows: 1 @@ -37,7 +36,6 @@ History of Computers Tools of the Craft ------------------ - ```{list-table} :header-rows: 1 * - Resource From 11472179e5b3f12a572c2f8eeb85f1959ad943eb Mon Sep 17 00:00:00 2001 From: Sarah Brown Date: Sun, 14 Nov 2021 15:24:10 -0500 Subject: [PATCH 09/10] error on warnings, but don't stop --- .github/workflows/check_pull_requests_for_deploy.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/check_pull_requests_for_deploy.yml b/.github/workflows/check_pull_requests_for_deploy.yml index 637c3fb..fbb7716 100644 --- a/.github/workflows/check_pull_requests_for_deploy.yml +++ b/.github/workflows/check_pull_requests_for_deploy.yml @@ -29,4 +29,4 @@ jobs: run: | jupyter-book build . --builder pdfhtml mv _build/pdf/book.pdf _build/html/coursemanual.pdf - jupyter-book build . + jupyter-book build -n -W --keep-going . From 93dd3b9c51588dc2fb63e0244ddf0e0276ebdb40 Mon Sep 17 00:00:00 2001 From: Sarah M Brown Date: Sat, 22 Jan 2022 08:09:20 -0500 Subject: [PATCH 10/10] fix typo --- index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.md b/index.md index f6abf3c..e81b88e 100644 --- a/index.md +++ b/index.md @@ -6,7 +6,7 @@ work. The goal of this course is to help you understand how your computer and pr environment work so that you can debug and learn independently more confident. -## Quck Facts +## Quick Facts - **Course time:** Spring 2022, TuTh 12:30PM - 1:45PM - **Credits:** 4