Skip to content

Commit

Permalink
update to v-1.3.4
Browse files Browse the repository at this point in the history
  • Loading branch information
Daniel Gilman committed Sep 30, 2024
1 parent f1635ef commit 9a8c618
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion pyHalo/pyhalo.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)
"""
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "pyhalo"
version = "1.3.3"
version = "1.3.4"
authors = [
{ name="Daniel Gilman", email="[email protected]" },
]
Expand Down
1 change: 1 addition & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@

setup(
author="Daniel Gilman",
version='1.3.3',
version='1.3.4',
author_email='[email protected]',
classifiers=[
#'Development Status :: 5 - Stable',
Expand Down
2 changes: 1 addition & 1 deletion tests/test_pyhalo_base.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.)
Expand Down

0 comments on commit 9a8c618

Please sign in to comment.