Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

py13 #157

Closed
wants to merge 3 commits into from
Closed

py13 #157

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading