Skip to content

Commit 737b6ec

Browse files
committed
moving jupyter_lite_config.json
1 parent 9f8b5f3 commit 737b6ec

3 files changed

Lines changed: 6 additions & 5 deletions

File tree

CHANGELOG.rst

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,12 @@ Changelog
33

44
3.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

1113
3.0.5 (1/2/2026)
1214
-------------------

Makefile

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ OUT_ROOT := $(ROOT)/_site
1919
OUT_DIR := $(OUT_ROOT)/$(PACKAGE)
2020
STAGE_DIR := $(ROOT)/.lite_src
2121
DOIT_DB := $(ROOT)/.jupyterlite.doit.db
22+
LITE_CONFIG := $(ROOT)/$(PACKAGE)/jupyter_lite_config.json
2223

2324
# --- GitHub Pages deploy config ---
2425
PAGES_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

0 commit comments

Comments
 (0)