-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fixed bug with newer release of matplotlib (#8)
- Loading branch information
1 parent
8119219
commit 87b9c52
Showing
5 changed files
with
8 additions
and
10 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,4 +1 @@ | ||
matplotlib>=3.5.1 | ||
numpy>=1.23.3 | ||
vcfpy>=0.13.6 | ||
pandas>=1.4.4 | ||
. |
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 |
---|---|---|
|
@@ -15,10 +15,11 @@ | |
license_files=('LICENSE'), | ||
packages=find_packages(), | ||
install_requires=[ | ||
"matplotlib>=3.5.1", | ||
"matplotlib>=3.5.1,<=3.8.0", | ||
"numpy>=1.23.3", | ||
"pandas>=1.4.4" | ||
], | ||
description='virHEAT creates a heatmap from vcf files and maps positions onto a reference genome.', | ||
description='virHEAT creates a heatmap from vcf files and maps positions on to a reference genome.', | ||
url='https://github.com/jonas-fuchs/virHEAT', | ||
author='Dr. Jonas Fuchs', | ||
author_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,3 +1,3 @@ | ||
"""plot vcf data as a heatmap mapped to a virus genome""" | ||
_program = "virheat" | ||
__version__ = "0.5.1" | ||
__version__ = "0.5.2" |
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