Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
38 commits
Select commit Hold shift + click to select a range
b97c902
switch over to quantecon-book-theme
mmcky Sep 23, 2020
fbf1abb
update branch name
mmcky Sep 23, 2020
e249135
Merge branch 'master' into qe-theme
mmcky Sep 24, 2020
f299a61
remove top level page and simplify repo
mmcky Sep 24, 2020
c65a09a
update python=3.8
mmcky Sep 25, 2020
d2fc090
Merge branch 'manual-adjust' into manual-adjustments
mmcky Sep 29, 2020
4b8a584
Merge branch 'qe-theme' into manual-adjustments
mmcky Sep 29, 2020
661d684
Merge branch 'update-python' into manual-adjustments
mmcky Sep 29, 2020
cb759d0
add intial setup for jupyter-book compilation
mmcky Sep 29, 2020
f0e39e1
update theme
mmcky Sep 29, 2020
9c80fc8
tidy up ci
mmcky Sep 29, 2020
926a903
add sphinx-multitoc-numbering
mmcky Sep 29, 2020
8e3f64f
add static path
mmcky Sep 29, 2020
b54dace
reorganise into a project folder called lectures
mmcky Sep 29, 2020
bf35338
Revert "reorganise into a project folder called lectures"
mmcky Sep 29, 2020
47fc1d3
update environment file
mmcky Sep 30, 2020
574af43
update config and env
mmcky Sep 30, 2020
f77c11f
move config and toc to source folder and update relative links
mmcky Sep 30, 2020
aba92fc
fix ci for new source location
mmcky Sep 30, 2020
dd7e0ed
run_in_temp issue on CI
mmcky Sep 30, 2020
27da815
[[TEST]] remove search.md from toc and file
mmcky Sep 30, 2020
b49e537
install packages as steps for greater control and remove from env unt…
mmcky Sep 30, 2020
2ee9afa
remove run_in_temp for CI
mmcky Sep 30, 2020
c66070c
update output path for netflify
mmcky Sep 30, 2020
cbde0c3
Revert "[[TEST]] remove search.md from toc and file"
mmcky Sep 30, 2020
aef540c
rename search to my_search.md to rule out content
mmcky Sep 30, 2020
8a39ba7
cleanup install repos
mmcky Sep 30, 2020
ae0de90
remove asset style pages from build
mmcky Sep 30, 2020
332ef19
re-enable code execution
mmcky Sep 30, 2020
15f39c6
update sources using tomyst(26890f1)
mmcky Oct 1, 2020
793d939
update sources from tomyst(b50a6e0)
mmcky Oct 1, 2020
dc75076
update timeout
mmcky Oct 1, 2020
5b48a0e
added pycache in gitignore
AakashGfude Oct 1, 2020
61f4b00
Merge branch 'test-jupyter-book' of https://github.com/QuantEcon/lect…
AakashGfude Oct 1, 2020
55bca70
empty commit
AakashGfude Oct 1, 2020
e0914a9
move folder name and update front page
mmcky Oct 1, 2020
e2a6078
update jb build command in ci
mmcky Oct 1, 2020
2f335ab
add author names as links
mmcky Oct 6, 2020
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 16 additions & 8 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Build Project [myst]
name: Build Project [using jupyter-book]
on: [push]
jobs:
tests:
Expand All @@ -12,18 +12,27 @@ jobs:
auto-update-conda: true
auto-activate-base: true
miniconda-version: 'latest'
python-version: 3.7
python-version: 3.8
environment-file: environment.yml
activate-environment: qe-lectures
- name: Install sphinxcontrib-tomyst
- name: Install quantecon-book-theme
shell: bash -l {0}
run: |
git clone https://github.com/mmcky/sphinxcontrib-tomyst
cd sphinxcontrib-tomyst && python setup.py install
git clone https://github.com/QuantEcon/quantecon-book-theme
cd quantecon-book-theme
python setup.py install
cd ../ && rm -rf quantecon-book-theme
- name: Install sphinx-multitoc-numbering
shell: bash -l {0}
run: |
git clone https://github.com/executablebooks/sphinx-multitoc-numbering.git
cd sphinx-multitoc-numbering
python setup.py install
cd ../ && rm -rf sphinx-multitoc-numbering
- name: Install Dependencies
shell: bash -l {0}
run: |
pip install sphinx-book-theme myst-nb
pip install jupyter-book
- name: Display Conda Environment Versions
shell: bash -l {0}
run: conda list
Expand All @@ -33,8 +42,7 @@ jobs:
- name: Build HTML
shell: bash -l {0}
run: |
pwd
make html
jb build lectures --path-output ./
- name: Preview Deploy to Netlify
uses: nwtgck/[email protected]
with:
Expand Down
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
_build/
_build/
__pycache__/
88 changes: 0 additions & 88 deletions Makefile

This file was deleted.

Loading