Skip to content

Commit

Permalink
Fix #141
Browse files Browse the repository at this point in the history
  • Loading branch information
dpryan79 committed Apr 7, 2023
1 parent 40d1770 commit fb7c0cf
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 5 deletions.
2 changes: 1 addition & 1 deletion pyBigWig.h
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
#include <structmember.h>
#include "bigWig.h"

#define pyBigWigVersion "0.3.21"
#define pyBigWigVersion "0.3.22"

typedef struct {
PyObject_HEAD
Expand Down
7 changes: 5 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"

Expand All @@ -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"
5 changes: 3 additions & 2 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -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
# Commenting this out, since this ends up breaking wheels on anything except python 3.7
#[bdist_wheel]
#py-limited-api = cp37

0 comments on commit fb7c0cf

Please sign in to comment.