File tree Expand file tree Collapse file tree 3 files changed +9
-5
lines changed Expand file tree Collapse file tree 3 files changed +9
-5
lines changed Original file line number Diff line number Diff line change 2
2
#include <structmember.h>
3
3
#include "bigWig.h"
4
4
5
- #define pyBigWigVersion "0.3.21 "
5
+ #define pyBigWigVersion "0.3.22 "
6
6
7
7
typedef struct {
8
8
PyObject_HEAD
Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ classifiers = [
20
20
description = " A package for accessing bigWig files using libBigWig"
21
21
keywords = [" bioinformatics" , " bigWig" , " bigBed" ]
22
22
name = " pyBigWig"
23
- version = " 0.3.21 "
23
+ version = " 0.3.22 "
24
24
readme = " README.md"
25
25
requires-python = " >=3.7"
26
26
@@ -43,4 +43,7 @@ packages = ["pyBigWigTest"]
43
43
44
44
# Target only minimum CPython version 3.7 on linux for wheel build
45
45
[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"
Original file line number Diff line number Diff line change 1
1
# This is required for setuptools to name the wheel with the correct
2
2
# 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
You can’t perform that action at this time.
0 commit comments