Skip to content

Commit

Permalink
bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
cmbant committed Jul 24, 2024
1 parent 9f0910c commit add944d
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 5 deletions.
2 changes: 1 addition & 1 deletion camb/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
__author__ = "Antony Lewis"
__contact__ = "antony at cosmologist dot info"
__url__ = "https://camb.readthedocs.io"
__version__ = "1.5.6"
__version__ = "1.5.7"

from . import baseconfig

Expand Down
4 changes: 2 additions & 2 deletions camb/tests/hmcode_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ def setup_HMcode_test(a, icos):
return results, logT

# Get the HMcode power from CAMB
def get_HMcode_power_from_CAMB(results, k_in, a_in, logT, HMcode_version):
def get_HMcode_power_from_CAMB(results, k_in, logT, HMcode_version):

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

# Get power from CAMB
k_nl, a_nl, Pk_nl = get_HMcode_power_from_CAMB(results, k_in, a_in, logT, HMcode_version)
k_nl, a_nl, Pk_nl = get_HMcode_power_from_CAMB(results, k_in, logT, HMcode_version)

# Compare benchmark to calculation
for ik in range(len(k_in)):
Expand Down
2 changes: 1 addition & 1 deletion fortran/config.f90
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ module config
use constants, only: const_twopi
implicit none

character(LEN=*), parameter :: version = '1.5.6'
character(LEN=*), parameter :: version = '1.5.7'

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

Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ classifiers = [
"Programming Language :: Python :: 3.12"
]
dependencies = [
"scipy>=1.0", "sympy>=1.0", "packaging"
"numpy", "scipy>=1.0", "sympy>=1.0", "packaging"
]

[project.optional-dependencies]
Expand Down
1 change: 1 addition & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
numpy
sympy>=1.0
scipy>=1.0
packaging

0 comments on commit add944d

Please sign in to comment.