From 9a8c6183fb9e976e0550b0dcaa57b840ecd64cce Mon Sep 17 00:00:00 2001 From: Daniel Gilman Date: Mon, 30 Sep 2024 15:40:04 -0500 Subject: [PATCH] update to v-1.3.4 --- pyHalo/pyhalo.py | 2 +- pyproject.toml | 2 +- requirements.txt | 1 + setup.py | 2 +- tests/test_pyhalo_base.py | 2 +- 5 files changed, 5 insertions(+), 4 deletions(-) diff --git a/pyHalo/pyhalo.py b/pyHalo/pyhalo.py index 5946a23..35009c4 100644 --- a/pyHalo/pyhalo.py +++ b/pyHalo/pyhalo.py @@ -7,7 +7,7 @@ from pyHalo.defaults import cosmo_default class pyHalo(object): - CODE_VERSION = '1.3.3' + CODE_VERSION = '1.3.4' """ The main class used for generating realizations (see example notebook) """ diff --git a/pyproject.toml b/pyproject.toml index b62563c..bf43b64 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "pyhalo" -version = "1.3.3" +version = "1.3.4" authors = [ { name="Daniel Gilman", email="gilmanda@uchicago.edu" }, ] diff --git a/requirements.txt b/requirements.txt index 163f7a7..ae98b5b 100644 --- a/requirements.txt +++ b/requirements.txt @@ -14,4 +14,5 @@ colossus>=1.3.1 h5py>=3.9.0 mcfit>=0.0.21 lenstronomy>=1.12.0 +setuptools==68.2.2 mpmath diff --git a/setup.py b/setup.py index 5541e8e..2ec7cd4 100644 --- a/setup.py +++ b/setup.py @@ -19,7 +19,7 @@ setup( author="Daniel Gilman", - version='1.3.3', + version='1.3.4', author_email='gilmanda@uchicago.edu', classifiers=[ #'Development Status :: 5 - Stable', diff --git a/tests/test_pyhalo_base.py b/tests/test_pyhalo_base.py index a1f2363..b9a026a 100644 --- a/tests/test_pyhalo_base.py +++ b/tests/test_pyhalo_base.py @@ -19,7 +19,7 @@ def setup_method(self): def test_version(self): pyhalo = pyHalo(0.5, 2.) - npt.assert_string_equal(pyhalo.CODE_VERSION, '1.3.3') + npt.assert_string_equal(pyhalo.CODE_VERSION, '1.3.4') def test_create_realizations(self): pyhalo = pyHalo(0.5, 2.)