Skip to content

Commit d887fb6

Browse files
authored
Update MUSCIA and Music-Box version (#359)
* update musica and music box version * lower tolerances
1 parent 55f452b commit d887fb6

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

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.6.0
4+
version: v2.9.0
55
authors:
66
- family-names: Dawson
77
given-names: Matthew

docker/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
FROM fedora:latest
22

33
ARG MUSIC_BOX_TAG=main
4-
ARG MUSICA_TAG=v0.11.1.4
4+
ARG MUSICA_TAG=v0.12.0
55

66
RUN dnf -y update \
77
&& dnf -y install \

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ classifiers = ["License :: OSI Approved :: Apache Software License"]
2525
dynamic = ["version", "description"]
2626

2727
dependencies = [
28-
"musica==0.11.1.4",
28+
"musica==0.12.0",
2929
"xarray",
3030
"colorlog",
3131
"pandas",

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.8.1"
7+
__version__ = "2.9.0"
88

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

tests/integration/test_chapman.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,8 @@ def test_run(self):
2929
assert math.isclose(
3030
_model[column],
3131
_expected[column],
32-
rel_tol=1e-19,
33-
abs_tol=1e-16,
32+
rel_tol=1.0e-12,
33+
abs_tol=1.0e-15,
3434
), f"Model results differ from expected for row index {_model_index} for species {column}"
3535

3636

0 commit comments

Comments
 (0)