Skip to content

Commit fb7c0cf

Browse files
committed
Fix #141
1 parent 40d1770 commit fb7c0cf

File tree

3 files changed

+9
-5
lines changed

3 files changed

+9
-5
lines changed

pyBigWig.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
#include <structmember.h>
33
#include "bigWig.h"
44

5-
#define pyBigWigVersion "0.3.21"
5+
#define pyBigWigVersion "0.3.22"
66

77
typedef struct {
88
PyObject_HEAD

pyproject.toml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ classifiers = [
2020
description = "A package for accessing bigWig files using libBigWig"
2121
keywords = ["bioinformatics", "bigWig", "bigBed"]
2222
name = "pyBigWig"
23-
version = "0.3.21"
23+
version = "0.3.22"
2424
readme = "README.md"
2525
requires-python = ">=3.7"
2626

@@ -43,4 +43,7 @@ packages = ["pyBigWigTest"]
4343

4444
# Target only minimum CPython version 3.7 on linux for wheel build
4545
[tool.cibuildwheel]
46-
build = "cp37-manylinux_x86_64"
46+
skip = "pp* cp36-* *-manylinux_i686 *_ppc64le *_s390x *-musllinux_x86_64 *-musllinux_i686"
47+
48+
[tool.cibuildwheel.linux]
49+
manylinux-x86_64-image = "manylinux2014"

setup.cfg

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
# This is required for setuptools to name the wheel with the correct
22
# minimum python abi version
3-
[bdist_wheel]
4-
py-limited-api = cp37
3+
# Commenting this out, since this ends up breaking wheels on anything except python 3.7
4+
#[bdist_wheel]
5+
#py-limited-api = cp37

0 commit comments

Comments
 (0)