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
5 changes: 4 additions & 1 deletion .github/workflows/ci_pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,4 +37,7 @@ jobs:

- name: Test tutorials
run: |
jupyter nbconvert --to notebook --execute tutorials/*.ipynb --output-dir=/tmp --ExecutePreprocessor.timeout=300
# tutorial_07_tikz.ipynb requires pdflatex — skip it in CI
jupyter nbconvert --to notebook --execute \
$(ls tutorials/*.ipynb | grep -v tutorial_07_tikz) \
--output-dir=/tmp --ExecutePreprocessor.timeout=300
5 changes: 4 additions & 1 deletion docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,10 @@ def setup(app):
]

templates_path = ["_templates"]
exclude_patterns = []
exclude_patterns = [
# tutorial_07_tikz.ipynb requires pdflatex to render — skip during docs build
"tutorials/tutorial_07_tikz.ipynb",
]


# -- Options for HTML output -------------------------------------------------
Expand Down
8 changes: 4 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "maxplotlibx"
version = "0.1.3"
version = "0.1.4"
description = "A reproducible plotting module with various backends and export options."
readme = "README.md"
requires-python = ">=3.8"
Expand All @@ -18,7 +18,7 @@ dependencies = [
"matplotlib",
"pint",
"plotly",
"tikzfigure>=0.2.0",
"tikzfigure[vis]>=0.2.0",
]
[project.optional-dependencies]
test = [
Expand All @@ -36,7 +36,7 @@ docs = [
dev = [
"maxplotlibx[test,docs]",
"ruff",
"black",
"black[jupyter]",
"isort",
"jupyterlab",
"nbstripout",
Expand All @@ -56,4 +56,4 @@ line-length = 88
line-length = 88

[tool.isort]
profile = "black"
profile = "black"
Loading
Loading