Skip to content
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
2 changes: 2 additions & 0 deletions .github/workflows/pr.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,8 @@ jobs:
uses: actions/setup-python@v4
with:
python-version: 3.13
- name: Install build dependencies
run: pip install wheel setuptools
- name: Install package
run: make install
- name: Run tests
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/push.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,8 @@ jobs:
python-version: 3.13
- name: Publish a git tag
run: ".github/publish-git-tag.sh || true"
- name: Install build dependencies
run: pip install wheel setuptools
- name: Install package
run: make install
- name: Build package
Expand Down
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
all: install format test build changelog

documentation:
jb clean docs
jb build docs
python -m jupyter_book clean docs
python -m jupyter_book build docs

format:
black . -l 79
Expand Down
4 changes: 4 additions & 0 deletions changelog_entry.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
- bump: patch
changes:
fixed:
- CI build failure due to missing setuptools dependency in GitHub Actions workflow.