File tree Expand file tree Collapse file tree 4 files changed +8
-8
lines changed Expand file tree Collapse file tree 4 files changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -42,22 +42,22 @@ jobs:
42
42
CIBW_BUILD_VERBOSITY : 1
43
43
run : python -m cibuildwheel --output-dir wheelhouse
44
44
45
- - name : Download and install gfortran-10.2
45
+ - name : Download and install gfortran
46
46
if : matrix.os == 'macos-12'
47
47
run : |
48
48
set -e # Exit immediately if a command exits with a non-zero status
49
49
50
50
echo "Downloading gfortran..."
51
- curl -L -o gfortran-Intel-11.1 -BigSur.dmg https://github.com/fxcoudert/gfortran-for-macOS/releases/download/11.1 -bigsur-intel/gfortran-Intel-11.1 -BigSur.dmg
51
+ curl -L -o gfortran-Intel-11.2 -BigSur.dmg https://github.com/fxcoudert/gfortran-for-macOS/releases/download/11.2 -bigsur-intel/gfortran-Intel-11.2 -BigSur.dmg
52
52
53
53
echo "Mounting.."
54
- hdiutil attach gfortran-Intel-11.1 -BigSur.dmg
54
+ hdiutil attach gfortran-Intel-11.2 -BigSur.dmg
55
55
56
56
echo "Installing gfortran..."
57
- sudo installer -pkg /Volumes/gfortran-Intel-11.1 -BigSur/gfortran.pkg -target /
57
+ sudo installer -pkg /Volumes/gfortran-Intel-11.2 -BigSur/gfortran.pkg -target /
58
58
59
59
echo "Unmounting ..."
60
- hdiutil detach /Volumes/gfortran-Intel-11.1 -BigSur
60
+ hdiutil detach /Volumes/gfortran-Intel-11.2 -BigSur
61
61
62
62
echo "Verifying gfortran installation..."
63
63
gfortran --version
Original file line number Diff line number Diff line change 8
8
__author__ = "Antony Lewis"
9
9
__contact__ = "antony at cosmologist dot info"
10
10
__url__ = "https://camb.readthedocs.io"
11
- __version__ = "1.5.7"
11
+ __version__ = "1.5.7.dev "
12
12
13
13
from . import baseconfig
14
14
Original file line number Diff line number Diff line change @@ -96,7 +96,7 @@ COMMON_FFLAGS = -MMD -cpp -ffree-line-length-none -fmax-errors=4 -fopenmp
96
96
FFLAGS = -O3 $(COMMON_FFLAGS )
97
97
DEBUGFLAGS = -g -fbacktrace -ffpe-trap=invalid,overflow,zero -fbounds-check $(COMMON_FFLAGS )
98
98
ifeq ($(shell uname -s) ,Darwin)
99
- SFFLAGS = -dynamiclib # -fpic
99
+ SFFLAGS = -dynamiclib -static-libgfortran -static-libgcc # -fpic
100
100
else
101
101
SFFLAGS = -shared -fpic
102
102
endif
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ module config
3
3
use constants, only: const_twopi
4
4
implicit none
5
5
6
- character (LEN=* ), parameter :: version = ' 1.5.7'
6
+ character (LEN=* ), parameter :: version = ' 1.5.7.dev '
7
7
8
8
integer :: FeedbackLevel = 0 ! if >0 print out useful information about the model
9
9
You can’t perform that action at this time.
0 commit comments