Skip to content

Commit

Permalink
Merge branch 'sdist' into 'dev'
Browse files Browse the repository at this point in the history
fix sdist

See merge request epi2melabs/modbam2bed!26
  • Loading branch information
cjw85 committed Mar 30, 2023
2 parents 2ec4bed + 00fed02 commit 2b67e28
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [v0.9.4]
### Fixed
- Python source distribution did not include libdeflate directory.

## [v0.9.3]
### Added
- Linux and macOS ARM conda builds.
Expand Down
1 change: 1 addition & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ include htslib/test/fuzz/*.h
prune htslib/htscodecs/tests
include htslib/htscodecs/tests**/*.c
include htslib/htscodecs/tests**/*.h
graft libdeflate*
graft images
prune build
prune docs
2 changes: 1 addition & 1 deletion modbampy/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
import libmodbampy

# remember to bump version in src/version.h too
__version__ = "0.9.3"
__version__ = "0.9.4"
ffi = libmodbampy.ffi
libbam = libmodbampy.lib

Expand Down
2 changes: 1 addition & 1 deletion src/version.h
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
// remember to bump version in modbampy/__init__.py too
const char *argp_program_version = "0.9.3";
const char *argp_program_version = "0.9.4";

0 comments on commit 2b67e28

Please sign in to comment.