Skip to content

Commit

Permalink
1.1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
cmbant committed Apr 1, 2020
1 parent 765206f commit 08341cd
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion camb/__init__.py
Expand Up @@ -7,7 +7,7 @@
__author__ = "Antony Lewis"
__contact__ = "antony at cosmologist dot info"
__url__ = "https://camb.readthedocs.io"
__version__ = "1.1.2.1"
__version__ = "1.1.2"

from . import baseconfig

Expand Down
Binary file modified camb/cambdll.dll
Binary file not shown.
2 changes: 1 addition & 1 deletion fortran/config.f90
Expand Up @@ -3,7 +3,7 @@ module config
use constants, only: const_twopi
implicit none

character(LEN=*), parameter :: version = '1.1.2.1'
character(LEN=*), parameter :: version = '1.1.2'

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

Expand Down
2 changes: 1 addition & 1 deletion fortran/tests/CAMB_test_files.py
Expand Up @@ -574,7 +574,7 @@ def num_unequal(filename, cmpFcn):
# printlog("Skipped file %s" % (filename))
return False
except ValueError as e:
printlog("ValueError: '%s' at %d, %d in file: %s" % (e.message, row, col + 1, filename))
printlog("ValueError: '%s' at %d, %d in file: %s" % (e, row, col + 1, filename))
return True


Expand Down
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -48,7 +48,7 @@ def git_install_forutils():
try:
print('forutils not found, attempting to install using git...')
os.chdir('..')
fbranch = os.getenv('FORUTILSBRANCH', '1.0.2' if os.environ.get('CONDA_BUILD') else 'master')
fbranch = os.getenv('FORUTILSBRANCH', '1.0.3' if os.environ.get('CONDA_BUILD') else 'master')
try:
if subprocess.call("git clone --branch %s --depth=1 https://github.com/cmbant/forutils" % fbranch,
shell=True) == 0:
Expand Down

0 comments on commit 08341cd

Please sign in to comment.