From fb7c0cf889407f55a6c31eeb6fd5f6a0744ee70c Mon Sep 17 00:00:00 2001 From: Devon Ryan Date: Fri, 7 Apr 2023 20:29:49 +0200 Subject: [PATCH] Fix #141 --- pyBigWig.h | 2 +- pyproject.toml | 7 +++++-- setup.cfg | 5 +++-- 3 files changed, 9 insertions(+), 5 deletions(-) diff --git a/pyBigWig.h b/pyBigWig.h index 71705f3..845cb30 100644 --- a/pyBigWig.h +++ b/pyBigWig.h @@ -2,7 +2,7 @@ #include #include "bigWig.h" -#define pyBigWigVersion "0.3.21" +#define pyBigWigVersion "0.3.22" typedef struct { PyObject_HEAD diff --git a/pyproject.toml b/pyproject.toml index 4fc0fae..e3737e0 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -20,7 +20,7 @@ classifiers = [ description = "A package for accessing bigWig files using libBigWig" keywords = ["bioinformatics", "bigWig", "bigBed"] name = "pyBigWig" -version = "0.3.21" +version = "0.3.22" readme = "README.md" requires-python = ">=3.7" @@ -43,4 +43,7 @@ packages = ["pyBigWigTest"] # Target only minimum CPython version 3.7 on linux for wheel build [tool.cibuildwheel] -build = "cp37-manylinux_x86_64" +skip = "pp* cp36-* *-manylinux_i686 *_ppc64le *_s390x *-musllinux_x86_64 *-musllinux_i686" + +[tool.cibuildwheel.linux] +manylinux-x86_64-image = "manylinux2014" diff --git a/setup.cfg b/setup.cfg index 588b9f6..1eed3f6 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,4 +1,5 @@ # This is required for setuptools to name the wheel with the correct # minimum python abi version -[bdist_wheel] -py-limited-api = cp37 \ No newline at end of file +# Commenting this out, since this ends up breaking wheels on anything except python 3.7 +#[bdist_wheel] +#py-limited-api = cp37