From cda4fcd3f4f57536a63fa0d8fa3eea20423c88f6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Johannes=20Schm=C3=B6lder?= Date: Mon, 2 Dec 2024 13:17:56 +0100 Subject: [PATCH] v1.0.2 --- .github/workflows/pipeline.yml | 2 +- cadet/__init__.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/pipeline.yml b/.github/workflows/pipeline.yml index 14033df..f88ac24 100644 --- a/.github/workflows/pipeline.yml +++ b/.github/workflows/pipeline.yml @@ -62,5 +62,5 @@ jobs: - name: Test with pytest run: | pip install .[testing] - mamba install cadet -c conda-forge + mamba install cadet>5.0.2 -c conda-forge pytest tests --rootdir=tests -m "not slow and not local" diff --git a/cadet/__init__.py b/cadet/__init__.py index f0a0d1d..ffdccb4 100644 --- a/cadet/__init__.py +++ b/cadet/__init__.py @@ -1,6 +1,6 @@ name = 'CADET-Python' -__version__ = "1.0.1" +__version__ = "1.0.2" from .h5 import H5 from .cadet import Cadet