Skip to content
This repository was archived by the owner on Jul 16, 2026. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
3 changes: 2 additions & 1 deletion .github/workflows/cache.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ jobs:
miniconda-version: 'latest'
python-version: 3.8
environment-file: environment.yml
activate-environment: qe-lectures
activate-environment: lecture-python
- name: Checkout QuantEcon theme
uses: actions/checkout@v2
with:
Expand All @@ -78,5 +78,6 @@ jobs:
- name: Build Website files
shell: bash -l {0}
run: |
ls theme/lecture-python.theme
make website THEMEPATH=theme/lecture-python.theme
ls _build/website/jupyter_html/*
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
miniconda-version: 'latest'
python-version: 3.8
environment-file: environment.yml
activate-environment: qe-lectures
activate-environment: lecture-python
- name: Display Conda Environment Versions
shell: bash -l {0}
run: conda list
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
miniconda-version: 'latest'
python-version: 3.8
environment-file: environment.yml
activate-environment: qe-lectures
activate-environment: lecture-python
- name: Run Execution Tests
shell: bash -l {0}
run: make coverage
Expand Down
9 changes: 8 additions & 1 deletion .github/workflows/pdf.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,14 +35,21 @@ jobs:
miniconda-version: 'latest'
python-version: 3.8
environment-file: environment.yml
activate-environment: qe-lectures
activate-environment: lecture-python
- name: Checkout QuantEcon theme
uses: actions/checkout@v2
with:
repository: QuantEcon/lecture-python.theme
token: ${{ secrets.ACTIONS_PAT }}
path: theme/lecture-python.theme
- name: Build PDF
shell: bash -l {0}
run: |
more ~/.bash_profile
echo 'export PATH=/tmp/texlive/bin/x86_64-linux:$PATH' >> ~/.bash_profile
source ~/.bash_profile
more ~/.bash_profile
ls theme/lecture-python.theme
make pdf
- uses: actions/upload-artifact@v2
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/preview.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
miniconda-version: 'latest'
python-version: 3.8
environment-file: environment.yml
activate-environment: qe-lectures
activate-environment: lecture-python
- name: Get Changed Files
id: files
uses: jitterbit/get-changed-files@v1
Expand Down
4 changes: 2 additions & 2 deletions environment.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@

name: qe-lectures
name: lecture-python
channels:
- default
dependencies:
- python=3.8
- anaconda=2020.11
- anaconda=2020.07
- pip
- pip:
- quantecon
Expand Down