Skip to content

Commit

Permalink
Merge pull request #20 from sean-morris/main
Browse files Browse the repository at this point in the history
Updated Action
  • Loading branch information
sean-morris authored Jan 14, 2025
2 parents 85b3049 + 3c9f206 commit 195c9a4
Show file tree
Hide file tree
Showing 2 changed files with 50 additions and 26 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,19 +13,19 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Setup Python
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: '3.10'
python-version: '3.11'
- name: Install the dependencies
run: |
python -m pip install -r requirements.txt
- name: Build the JupyterLite site
run: |
jupyter lite build --contents . --output-dir dist
- name: Upload artifact
uses: actions/upload-pages-artifact@v1
uses: actions/upload-pages-artifact@v3
with:
path: ./dist

Expand All @@ -44,4 +44,4 @@ jobs:
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v1
uses: actions/deploy-pages@v4
66 changes: 45 additions & 21 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,22 +1,46 @@
bqplot
ipycanvas
ipyevents
ipyleaflet
ipympl
ipywidgets
jupyterlab
jupyterlab-drawio
jupyterlab-fasta
jupyterlab-geojson
# Core modules (mandatory)
jupyterlite-core==0.5.0
jupyterlab~=4.3.4
notebook~=7.3.2


# Python kernel (optional)
jupyterlite-pyodide-kernel==0.5.0

# P5 kernel (optional)
jupyterlite-p5-kernel==0.1.0

# JupyterLab: Fasta file renderer (optional)
jupyterlab-fasta>=3.3.0,<4
# JupyterLab: Geojson file renderer (optional)
jupyterlab-geojson>=3.4.0,<4
# JupyterLab: guided tour (optional)
# TODO: re-enable after https://github.com/jupyterlab-contrib/jupyterlab-tour/issues/82
# jupyterlab-tour
# JupyterLab: dark theme
jupyterlab-night
# JupyterLab: Miami nights theme (optional)
jupyterlab_miami_nights
jupyterlite
plotly
theme-darcula
py4macro
py4etrics
wooldridge
see
lmdiag
linearmodels
linearsolve
pandas-datareader

# Python: ipywidget library for Jupyter notebooks (optional)
ipywidgets>=8.1.3,<9
# Python: ipyevents library for Jupyter notebooks (optional)
ipyevents>=2.0.1
# Python: interative Matplotlib library for Jupyter notebooks (optional)
ipympl>=0.8.2
# Python: ipycanvas library for Jupyter notebooks (optional)
ipycanvas>=0.9.1
# Python: ipyleaflet library for Jupyter notebooks (optional)
ipyleaflet

# bqplot
# plotly
# theme-darcula
# py4macro
# py4etrics
# wooldridge
# see
# lmdiag
# linearmodels
# linearsolve
# pandas-datareader

0 comments on commit 195c9a4

Please sign in to comment.