Skip to content

Commit

Permalink
wheels [pypi]
Browse files Browse the repository at this point in the history
  • Loading branch information
cmbant committed Aug 18, 2024
1 parent 4dc0830 commit b28867d
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 7 deletions.
1 change: 0 additions & 1 deletion .github/workflows/build_wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,6 @@ jobs:
if: matrix.os == 'macos-13' || matrix.os == 'macos-13-xlarge'
env:
MACOSX_DEPLOYMENT_TARGET: 13
CIBW_BUILD: cp311-*
CIBW_SKIP: pp*
CIBW_BUILD_VERBOSITY: 1
run: python -m cibuildwheel --output-dir wheelhouse
Expand Down
4 changes: 2 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,13 @@ if: (type != pull_request) OR (type = pull_request AND TRAVIS_PULL_REQUEST_SLUG
jobs:
include:
- if: branch !~ ^test.*
name: "Focal + Python 3.7"
name: "Focal + Python 3.8"
dist: focal
addons:
apt:
packages:
- gfortran
python: "3.7"
python: "3.8"
env:
- PYPI_DIST="true"
- if: branch !~ ^test.*
Expand Down
2 changes: 1 addition & 1 deletion forutils
Submodule forutils updated 1 files
+0 −4 Makefile_compiler
3 changes: 1 addition & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,15 +12,14 @@ keywords = ['cosmology', 'CAMB', 'CMB']
readme = "docs/README_pypi.rst"
license = { file = "LICENCE.txt" }
dynamic = ["version"]
requires-python = ">=3.7.0"
requires-python = ">=3.8.0"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Operating System :: OS Independent",
"Environment :: Console",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Astronomy",
"License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -256,7 +256,7 @@ def finalize_options(self):

def get_tag(self):
_, _, plat = super().get_tag()
if "osx_12" in plat:
if "osx_12" in plat and "osx_13" in plat:
return _, _, plat
return "py3", "none", plat

Expand Down

0 comments on commit b28867d

Please sign in to comment.