Skip to content

Commit

Permalink
Merge pull request #1109 from pysam-developers/v0.19.1.x
Browse files Browse the repository at this point in the history
V0.19.1.x
  • Loading branch information
AndreasHeger committed May 26, 2022
2 parents a7440c7 + 6b46709 commit 5eac009
Show file tree
Hide file tree
Showing 4 changed files with 23 additions and 4 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -56,16 +56,19 @@ jobs:
- name: Build wheels for linux
if: runner.os == 'Linux'
uses: pypa/cibuildwheel@v2.2.2
uses: pypa/cibuildwheel@v2.4.0
env:
CIBW_BUILD: ${{ matrix.cibw_build }}
CIBW_SKIP: "*musllinux*"
CIBW_BEFORE_BUILD: yum install -y libcurl-devel zlib-devel bzip2-devel xz-devel && pip install cython
CIBW_MANYLINUX_X86_64_IMAGE: manylinux_2_24
CIBW_MANYLINUX_I686_IMAGE: manylinux_2_24
CIBW_MANYLINUX_AARCH64_IMAGE: manylinux_2_24
CIBW_BEFORE_BUILD: apt-get update && apt-get install -y libcurl4-openssl-dev zlib1g-dev libbz2-dev liblzma-dev && pip install cython
CIBW_ARCHS: ${{ matrix.cibw_archs }}

- name: Build wheels for macos
if: runner.os != 'Linux'
uses: pypa/cibuildwheel@v2.2.2
uses: pypa/cibuildwheel@v2.4.0
env:
CIBW_BUILD: ${{ matrix.cibw_build }}
CIBW_BEFORE_BUILD: pip install cython
Expand Down
8 changes: 8 additions & 0 deletions NEWS
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,14 @@ http://pysam.readthedocs.io/en/latest/release.html
Release notes
=============

Release 0.19.1
==============

This release wraps htslib/samtools/bcftools version 1.15.1.

* [#1104] add an add_samples() method to quickly add multiple samples
to VCF.

Release 0.19.0
==============

Expand Down
8 changes: 8 additions & 0 deletions doc/release.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,14 @@
Release notes
=============

Release 0.19.1
==============

This release wraps htslib/samtools/bcftools version 1.15.1.

* [#1104] add an add_samples() method to quickly add multiple samples
to VCF.

Release 0.19.0
==============

Expand Down
2 changes: 1 addition & 1 deletion pysam/version.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# pysam versioning information
__version__ = "0.19.0"
__version__ = "0.19.1"

__samtools_version__ = "1.15.1"
__bcftools_version__ = "1.15.1"
Expand Down

0 comments on commit 5eac009

Please sign in to comment.