File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -3,10 +3,12 @@ Changelog
33
443.0.6 (xx/xx/2026)
55-------------------
6- * remove requirements.txt and doc/ requirements.txt
6+ * put info from requirements files into pyproject.toml
77* fix testing badge
88* update 11_performance.ipynb to work with jupyterlite
99* do not install numba when using jupyterlite
10+ * clean up docs/conf.py
11+ * move jupyter_lite_config.json out of root repo level
1012
11133.0.5 (1/2/2026)
1214-------------------
Original file line number Diff line number Diff line change @@ -19,6 +19,7 @@ OUT_ROOT := $(ROOT)/_site
1919OUT_DIR := $(OUT_ROOT ) /$(PACKAGE )
2020STAGE_DIR := $(ROOT ) /.lite_src
2121DOIT_DB := $(ROOT ) /.jupyterlite.doit.db
22+ LITE_CONFIG := $(ROOT ) /$(PACKAGE ) /jupyter_lite_config.json
2223
2324# --- GitHub Pages deploy config ---
2425PAGES_BRANCH := gh-pages
@@ -179,10 +180,7 @@ rcheck:
179180 @echo " ✅ Release checks complete"
180181
181182.PHONY : lite
182- lite : $(VENV ) /.ready
183- @echo " ==> Ensuring required files exist" ; \
184- test -f " $( ROOT) /jupyter_lite_config.json" || (echo " ❌ Missing jupyter_lite_config.json" && false)
185-
183+ lite : $(VENV ) /.ready $(LITE_CONFIG )
186184 @echo " ==> Building package wheel for PyOdide"
187185 @$(PYTHON ) -m build
188186
@@ -219,6 +217,7 @@ lite: $(VENV)/.ready
219217
220218 @echo "==> Building JupyterLite"
221219 @"$(PYTHON)" -m jupyter lite build \
220+ --config="$(LITE_CONFIG)" \
222221 --contents="$(STAGE_DIR)" \
223222 --output-dir="$(OUT_DIR)"
224223
File renamed without changes.
You can’t perform that action at this time.
0 commit comments