Skip to content

Commit add944d

Browse files
committed
bump version
1 parent 9f0910c commit add944d

File tree

5 files changed

+6
-5
lines changed

5 files changed

+6
-5
lines changed

camb/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
__author__ = "Antony Lewis"
88
__contact__ = "antony at cosmologist dot info"
99
__url__ = "https://camb.readthedocs.io"
10-
__version__ = "1.5.6"
10+
__version__ = "1.5.7"
1111

1212
from . import baseconfig
1313

camb/tests/hmcode_test.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,7 @@ def setup_HMcode_test(a, icos):
170170
return results, logT
171171

172172
# Get the HMcode power from CAMB
173-
def get_HMcode_power_from_CAMB(results, k_in, a_in, logT, HMcode_version):
173+
def get_HMcode_power_from_CAMB(results, k_in, logT, HMcode_version):
174174

175175
# k and z ranges for results
176176
kmin = k_in[0]
@@ -214,7 +214,7 @@ def HMcode_benchmark_file(icos, ihm):
214214
k_in, a_in, Pk_in = read_Mead_benchmark(infile)
215215

216216
# Get power from CAMB
217-
k_nl, a_nl, Pk_nl = get_HMcode_power_from_CAMB(results, k_in, a_in, logT, HMcode_version)
217+
k_nl, a_nl, Pk_nl = get_HMcode_power_from_CAMB(results, k_in, logT, HMcode_version)
218218

219219
# Compare benchmark to calculation
220220
for ik in range(len(k_in)):

fortran/config.f90

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ module config
33
use constants, only: const_twopi
44
implicit none
55

6-
character(LEN=*), parameter :: version = '1.5.6'
6+
character(LEN=*), parameter :: version = '1.5.7'
77

88
integer :: FeedbackLevel = 0 !if >0 print out useful information about the model
99

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ classifiers = [
2828
"Programming Language :: Python :: 3.12"
2929
]
3030
dependencies = [
31-
"scipy>=1.0", "sympy>=1.0", "packaging"
31+
"numpy", "scipy>=1.0", "sympy>=1.0", "packaging"
3232
]
3333

3434
[project.optional-dependencies]

requirements.txt

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
numpy
12
sympy>=1.0
23
scipy>=1.0
34
packaging

0 commit comments

Comments
 (0)