Skip to content

Commit

Permalink
python 13
Browse files Browse the repository at this point in the history
  • Loading branch information
cmbant committed Aug 12, 2024
1 parent add944d commit 4399847
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 5 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build_wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
compiler: gcc
version: 11

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

- run: gfortran --version
Expand All @@ -31,7 +31,7 @@ jobs:
- uses: actions/setup-python@v5

- name: Install cibuildwheel
run: python -m pip install cibuildwheel==2.18.1
run: python -m pip install cibuildwheel

- name: Build macos-13 wheels
if: matrix.os == 'macos-13' || matrix.os == 'macos-13-xlarge' || matrix.os == 'flyci-macos-large-latest-m2'
Expand All @@ -45,7 +45,7 @@ jobs:
- name: Build macos-12 wheels
if: matrix.os == 'macos-12'
env:
# all cp3xx, since old macs seem to only use osx 11+ builds if this is set not "none"
# all cp3xx, since old macs seem to only use osx 12+ builds if this is set not "none"
# see consistency with get_tag() in setup.py
MACOSX_DEPLOYMENT_TARGET: 12
CIBW_SKIP: pp*
Expand Down
3 changes: 2 additions & 1 deletion camb/__init__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
# coding: utf8
"""
Python CAMB interface (https://camb.info)
CAMB, Code for Anisotropies in the Microwave Background (https://camb.info)
Computational modules are wrapped Fortran 2003, but can be used entirely from Python.
"""
__author__ = "Antony Lewis"
Expand Down
3 changes: 2 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,8 @@ classifiers = [
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12"
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13"
]
dependencies = [
"numpy", "scipy>=1.0", "sympy>=1.0", "packaging"
Expand Down

0 comments on commit 4399847

Please sign in to comment.