Skip to content

Commit

Permalink
Bump minor version
Browse files Browse the repository at this point in the history
  • Loading branch information
nvictus committed Apr 14, 2024
1 parent e011cc4 commit 9473afe
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/buildwheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-20.04, macos-11]
os: [ubuntu-20.04, macos-12, macos-latest]

steps:
- uses: actions/checkout@v3
Expand All @@ -28,7 +28,7 @@ jobs:
platforms: all

- name: Build wheels
uses: pypa/cibuildwheel@v2.12.0
uses: pypa/cibuildwheel@v2.17.0

- uses: actions/upload-artifact@v3
with:
Expand Down
14 changes: 13 additions & 1 deletion bbi/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,16 @@

del cbbi, _bbi

__version__ = '0.3.6'
__version__ = '0.4.0'
__all__ = [
'is_bbi',
'is_bigwig',
'is_bigbed',
'open',
'info',
'chromsizes',
'zooms',
'fetch_intervals',
'fetch',
'stackup',
]
7 changes: 4 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ include = ["bbi*"]

[project]
name = "pybbi"
description = "Python bindings to the UCSC Big Binary (bigWig/bigBed) file library."
description = "Python bindings to the UCSC source for Big Binary Indexed (bigWig/bigBed) files."
requires-python = ">=3.7"
license = {text = "MIT"}
authors = [
Expand Down Expand Up @@ -44,6 +44,7 @@ classifiers = [
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]

dependencies = [
Expand All @@ -69,7 +70,7 @@ repository = "https://github.com/nvictus/pybbi"


[tool.cibuildwheel]
build = ["cp38-*", "cp39-*", "cp310-*", "cp311-*"]
build = ["cp39-*", "cp310-*", "cp311-*", "cp312-*"]
skip = "*-musllinux*"
build-verbosity = 3

Expand All @@ -79,7 +80,7 @@ before-all = "yum install -y gcc make zlib-devel openssl-devel libpng-devel"


[tool.cibuildwheel.macos]
archs = ["x86_64"] # "arm64" is not yet supported by GitHub Actions (Needs M1 runner)
archs = ["x86_64", "arm64"] # "arm64" needs M1 runner on GitHub Actions
before-all = """
brew install pkg-config openssl libpng # -> /usr/local (x86_64)
"""

0 comments on commit 9473afe

Please sign in to comment.