-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
b393554
commit 382ed15
Showing
4 changed files
with
4 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[tool.poetry] | ||
name = "bioat" | ||
version = "0.4.7" | ||
version = "0.4.8" | ||
description = "Bioinformatic toolkit with python (It's still under development!)" | ||
license = "MIT" | ||
authors = ["Herman Zhao <[email protected]>"] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,7 +6,7 @@ | |
project_toml: str = os.path.join(bioat.__path__[0], 'version.py') | ||
sec = os.path.getmtime(project_toml) | ||
__upgrade_date__ = datetime.date.fromtimestamp(sec) | ||
__version__ = "0.4.7" | ||
__version__ = "0.4.8" | ||
|
||
__author__ = 'Hua-nan ZHAO @ Tsinghua University' | ||
__email__ = '[email protected]' | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
import bioat | ||
|
||
def test_version_info(): | ||
assert bioat.__version__ == "0.4.7" | ||
assert bioat.__version__ == "0.4.8" | ||
assert bioat.__author__ == 'Hua-nan ZHAO @ Tsinghua University' | ||
assert bioat.__doc_format__ == "restructuredtext" |