Skip to content

Commit fbc0b7f

Browse files
committed
test [pypi]
1 parent 6b6b386 commit fbc0b7f

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

.github/workflows/build_wheels.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -42,22 +42,22 @@ jobs:
4242
CIBW_BUILD_VERBOSITY: 1
4343
run: python -m cibuildwheel --output-dir wheelhouse
4444

45-
- name: Download and install gfortran-10.2
45+
- name: Download and install gfortran
4646
if: matrix.os == 'macos-12'
4747
run: |
4848
set -e # Exit immediately if a command exits with a non-zero status
4949
5050
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
5252
5353
echo "Mounting.."
54-
hdiutil attach gfortran-Intel-11.1-BigSur.dmg
54+
hdiutil attach gfortran-Intel-11.2-BigSur.dmg
5555
5656
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 /
5858
5959
echo "Unmounting ..."
60-
hdiutil detach /Volumes/gfortran-Intel-11.1-BigSur
60+
hdiutil detach /Volumes/gfortran-Intel-11.2-BigSur
6161
6262
echo "Verifying gfortran installation..."
6363
gfortran --version

camb/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
__author__ = "Antony Lewis"
99
__contact__ = "antony at cosmologist dot info"
1010
__url__ = "https://camb.readthedocs.io"
11-
__version__ = "1.5.7"
11+
__version__ = "1.5.7.dev"
1212

1313
from . import baseconfig
1414

fortran/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ COMMON_FFLAGS = -MMD -cpp -ffree-line-length-none -fmax-errors=4 -fopenmp
9696
FFLAGS = -O3 $(COMMON_FFLAGS)
9797
DEBUGFLAGS = -g -fbacktrace -ffpe-trap=invalid,overflow,zero -fbounds-check $(COMMON_FFLAGS)
9898
ifeq ($(shell uname -s),Darwin)
99-
SFFLAGS = -dynamiclib #-fpic
99+
SFFLAGS = -dynamiclib -static-libgfortran -static-libgcc # -fpic
100100
else
101101
SFFLAGS = -shared -fpic
102102
endif

fortran/config.f90

Lines changed: 1 addition & 1 deletion
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.7'
6+
character(LEN=*), parameter :: version = '1.5.7.dev'
77

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

0 commit comments

Comments
 (0)