Skip to content

Commit 4399847

Browse files
committed
python 13
1 parent add944d commit 4399847

File tree

3 files changed

+7
-5
lines changed

3 files changed

+7
-5
lines changed

.github/workflows/build_wheels.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
compiler: gcc
2020
version: 11
2121

22-
- run: ln -s $(which gfortran-11) /usr/local/bin/gfortran
22+
- run: ln -s $(which gfortran-12) /usr/local/bin/gfortran
2323
if: matrix.os != 'windows-latest'
2424

2525
- run: gfortran --version
@@ -31,7 +31,7 @@ jobs:
3131
- uses: actions/setup-python@v5
3232

3333
- name: Install cibuildwheel
34-
run: python -m pip install cibuildwheel==2.18.1
34+
run: python -m pip install cibuildwheel
3535

3636
- name: Build macos-13 wheels
3737
if: matrix.os == 'macos-13' || matrix.os == 'macos-13-xlarge' || matrix.os == 'flyci-macos-large-latest-m2'
@@ -45,7 +45,7 @@ jobs:
4545
- name: Build macos-12 wheels
4646
if: matrix.os == 'macos-12'
4747
env:
48-
# all cp3xx, since old macs seem to only use osx 11+ builds if this is set not "none"
48+
# all cp3xx, since old macs seem to only use osx 12+ builds if this is set not "none"
4949
# see consistency with get_tag() in setup.py
5050
MACOSX_DEPLOYMENT_TARGET: 12
5151
CIBW_SKIP: pp*

camb/__init__.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
# coding: utf8
22
"""
33
4-
Python CAMB interface (https://camb.info)
4+
CAMB, Code for Anisotropies in the Microwave Background (https://camb.info)
5+
Computational modules are wrapped Fortran 2003, but can be used entirely from Python.
56
67
"""
78
__author__ = "Antony Lewis"

pyproject.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,8 @@ classifiers = [
2525
"Programming Language :: Python :: 3.9",
2626
"Programming Language :: Python :: 3.10",
2727
"Programming Language :: Python :: 3.11",
28-
"Programming Language :: Python :: 3.12"
28+
"Programming Language :: Python :: 3.12",
29+
"Programming Language :: Python :: 3.13"
2930
]
3031
dependencies = [
3132
"numpy", "scipy>=1.0", "sympy>=1.0", "packaging"

0 commit comments

Comments
 (0)