Skip to content

Commit b3e68e1

Browse files
committed
Fix order of docs workflow. Bump point release.
1 parent fbddd6e commit b3e68e1

File tree

3 files changed

+20
-11
lines changed

3 files changed

+20
-11
lines changed

.github/workflows/docs.yml

Lines changed: 18 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,24 @@ jobs:
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

@@ -65,15 +83,6 @@ jobs:
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

flacarray/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,6 @@
1414
# Set the log level
1515
logging.basicConfig(level=log_level)
1616

17-
__version__ = "0.2.0"
17+
__version__ = "0.2.1"
1818

1919
from .array import FlacArray

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ build-backend = "mesonpy"
99

1010
[project]
1111
name = "flacarray"
12-
version = "0.2.0"
12+
version = "0.2.1"
1313
description = "FLAC Compression of Arrays"
1414
readme = "README.md"
1515
maintainers = [

0 commit comments

Comments
 (0)