Skip to content

Commit

Permalink
Version 0.4!
Browse files Browse the repository at this point in the history
  • Loading branch information
standage committed Apr 9, 2020
1 parent 901913e commit 64ac2f3
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
All notable changes to this project will be documented in this file.
This project adheres to [Semantic Versioning](http://semver.org/).

## Unreleased
## [0.4] - 2020-04-09
### Added
- New `tag.select.merge` function to efficiently merge sorted feature streams (see #68).
- New `tag.locus` module for efficient parsing locus coordinates from multiple annotation streams (see #71).
Expand Down
1 change: 1 addition & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
include versioneer.py
include tag/_version.py
include tag/tests/data/*
2 changes: 2 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,8 @@
author_email='[email protected]',
license='BSD-3',
packages=['tag', 'tag.cli', 'tag.tests'],
package_data={'tag': ['tag/tests/data/*']},
include_package_data=True,
entry_points={'console_scripts': ['tag = tag.__main__:main']},
install_requires=['intervaltree>=3.0', 'networkx>=2.0'],
classifiers=[
Expand Down
2 changes: 1 addition & 1 deletion tag/tests/test_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@


def test_tag_open_read():
fh = tag.open('tag/__init__.py', 'r')
fh = tag.open(data_file('../../__init__.py'), 'r')
line = next(fh)
assert line == '#!/usr/bin/env python\n'

Expand Down

0 comments on commit 64ac2f3

Please sign in to comment.