Skip to content

Commit c8d7eaf

Browse files
committed
Merge branch 'main' into release
2 parents fb0fc00 + 6f474bd commit c8d7eaf

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.github/workflows/gh_pages.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ jobs:
5858
# 1. the frozen version, represented as vX.X in the version switcher
5959
docker build -t music_box -f docker/Dockerfile.docs .
6060
id=$(docker create music_box)
61-
docker cp $id:/build/docs/build/html tmpdocs
61+
docker cp $id:/music-box/docs/build/html tmpdocs
6262
docker rm -v $id
6363
version=$(sed -nr "s/^release = f'v(.+)\{suffix\}'.*$/\1/p" docs/source/conf.py)
6464
mv tmpdocs _build/html/versions/${version}
@@ -67,7 +67,7 @@ jobs:
6767
# edit conf.py to produce a version string that looks like vX.X (stable)
6868
docker build -t music_box -f docker/Dockerfile.docs --build-arg SUFFIX=" (stable)" .
6969
id=$(docker create music_box)
70-
docker cp $id:/build/docs/build/html tmpdocs
70+
docker cp $id:/music-box/docs/build/html tmpdocs
7171
docker rm -v $id
7272
mv tmpdocs _build/html/versions/stable
7373
# Delete everything under _gh-pages/ that is from the

CITATION.cff

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
cff-version: 1.2.0
22
message: If you use this software, please cite it as below.
33
title: MusicBox
4-
version: v2.9.0
4+
version: v2.9.1
55
authors:
66
- family-names: Dawson
77
given-names: Matthew

src/acom_music_box/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
This package contains modules for handling various aspects of a music box,
55
including species, products, reactants, reactions, and more.
66
"""
7-
__version__ = "2.9.0"
7+
__version__ = "2.9.1"
88

99
from .utils import convert_time, convert_pressure, convert_temperature, convert_concentration
1010
from .model_options import BoxModelOptions

0 commit comments

Comments
 (0)