From 04c4e620b10b9a5f916c5e6ede783a806c572bbc Mon Sep 17 00:00:00 2001
From: Michel Aguena <aguena@apc.in2p3.fr>
Date: Wed, 29 Jan 2025 14:33:20 +0100
Subject: [PATCH] fix: numcosmo<=0.22.0 (#659)

* fix to numcosmo<=0.22.0
---
 .github/workflows/build_check.yml | 2 +-
 clmm/__init__.py                  | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/build_check.yml b/.github/workflows/build_check.yml
index 8658316f5..87ce6723b 100644
--- a/.github/workflows/build_check.yml
+++ b/.github/workflows/build_check.yml
@@ -16,7 +16,7 @@ jobs:
     - name: Install prereq and NumCosmo using conda
       run: |
         echo "$CONDA/bin" >> $GITHUB_PATH
-        conda install -c conda-forge gobject-introspection pygobject numcosmo cmake swig setuptools_scm sphinx sphinx_rtd_theme nbconvert pandoc ipython
+        conda install -c conda-forge gobject-introspection pygobject 'numcosmo<=0.22.0' cmake swig setuptools_scm sphinx sphinx_rtd_theme nbconvert pandoc ipython
     - name: Install prereq using pip
       run: |
         pip install -r requirements.txt
diff --git a/clmm/__init__.py b/clmm/__init__.py
index e9d63a2a0..f679b53cd 100644
--- a/clmm/__init__.py
+++ b/clmm/__init__.py
@@ -26,4 +26,4 @@
 )
 from . import support
 
-__version__ = "1.14.4"
+__version__ = "1.14.5"