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
4 changes: 0 additions & 4 deletions .github/workflows/build-docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,10 +29,6 @@ jobs:
- name: Install psignifit
run: pip install .

- name: Install jupyter_book
shell: bash -l {0}
run: pip install -U git+https://github.com/ExecutableBookProject/jupyter-book.git@main

- name: Build My Book
shell: bash -l {0}
run: jupyter-book build --warningiserror docs/
10 changes: 5 additions & 5 deletions docs/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
- sphinx
- numpy
- matplotlib
- sphinxcontrib-mermaid
- jupyter-book
sphinx
numpy
matplotlib
sphinxcontrib-mermaid
jupyter-book>=1.0,<2
3 changes: 0 additions & 3 deletions psignifit/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,6 @@
Python psignifit - based on Matlab psignifit by Heiko Schütt with help from
Felix Wichmann, Jakob Macke and Stefan Harmeling.
"""
import os
import subprocess

# import here the main function
from .psignifit import psignifit
from .tools import pool_blocks
Expand Down
5 changes: 4 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -51,10 +51,13 @@ docs = [
"sphinx-gallery",
"sphinx_rtd_theme",
"matplotlib",
"jupyter-book==0.14",
"jupyter-book>=1.0,<2",
"jupytext>=1.13.3",
"jupyterlab_myst",
"myst_nb",
"ipywidgets",
"sphinx-hoverxref",
]

[tool.setuptools.packages.find]
include = ["psignifit*"]
Loading