File tree Expand file tree Collapse file tree 3 files changed +20
-11
lines changed
Expand file tree Collapse file tree 3 files changed +20
-11
lines changed Original file line number Diff line number Diff line change 5454 && python3 -c 'import flacarray.tests; flacarray.tests.run()' \
5555 && popd >/dev/null 2>&1
5656
57+ - name : Install Docs Dependencies
58+ # AttributeError: 'MathBlockParser' object has no attribute 'parse_axt_heading'
59+ # https://github.com/jupyter/nbconvert/issues/2198
60+ # mistune = "<3.1"
61+ run : |
62+ source ~/conda/etc/profile.d/conda.sh \
63+ && conda activate docs \
64+ && conda install --yes \
65+ mkdocs \
66+ mkdocstrings \
67+ mkdocstrings-python \
68+ mkdocs-material \
69+ mkdocs-material-extensions \
70+ mkdocs-jupyter \
71+ "mistune<3.1" \
72+ && git config user.name 'github-actions[bot]' \
73+ && git config user.email 'github-actions[bot]@users.noreply.github.com'
74+
5775 - name : Create Docs Cache ID
5876 run : echo "cache_id=$(date --utc '+%V')" >> $GITHUB_ENV
5977
6583 restore-keys : |
6684 mkdocs-material-
6785
68- - name : Install Docs Dependencies
69- # AttributeError: 'MathBlockParser' object has no attribute 'parse_axt_heading'
70- # https://github.com/jupyter/nbconvert/issues/2198
71- # mistune = "<3.1"
72- run : |
73- conda install --yes mkdocs mkdocstrings mkdocstrings-python mkdocs-material mkdocs-material-extensions mkdocs-jupyter "mistune<3.1"
74- git config user.name 'github-actions[bot]'
75- git config user.email 'github-actions[bot]@users.noreply.github.com'
76-
7786 - name : Deploy Docs
7887 run : |
7988 cd docs
Original file line number Diff line number Diff line change 1414# Set the log level
1515logging .basicConfig (level = log_level )
1616
17- __version__ = "0.2.0 "
17+ __version__ = "0.2.1 "
1818
1919from .array import FlacArray
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ build-backend = "mesonpy"
99
1010[project ]
1111name = " flacarray"
12- version = " 0.2.0 "
12+ version = " 0.2.1 "
1313description = " FLAC Compression of Arrays"
1414readme = " README.md"
1515maintainers = [
You can’t perform that action at this time.
0 commit comments