Skip to content

Commit

Permalink
Update 0.3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
duypham2108 committed Dec 24, 2020
1 parent 9fc3dcf commit 72dce9a
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 6 deletions.
2 changes: 1 addition & 1 deletion HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ History
=======


0.3.0 (2020-12-24)
0.3.1 (2020-12-24)
------------------
0.2.7 (2020-09-12)
------------------
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
scanpy==1.5.1
tensorflow==2.2.1
tensorflow==2.4.0
Pillow==7.1.2
gseapy>=0.10
NaiveDE==1.2
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.3.0
current_version = 0.3.1
commit = True
tag = True

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,6 @@
test_suite='tests',
tests_require=test_requirements,
url='https://github.com/BiomedicalMachineLearning/stLearn',
version='0.3.0',
version='0.3.1',
zip_safe=False,
)
2 changes: 1 addition & 1 deletion stlearn/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

__author__ = """Genomics and Machine Learning lab"""
__email__ = 'duy.pham@uq.edu.au'
__version__ = '0.3.0'
__version__ = '0.3.1'


from . import read
Expand Down
4 changes: 3 additions & 1 deletion stlearn/plotting/trajectory/DE_transition_plot.py
Original file line number Diff line number Diff line change
Expand Up @@ -237,4 +237,6 @@ def DE_transition_plot(
va="center",
)
plt.show()
plt.savefig(output + "/" + name, dpi=dpi, bbox_inches="tight", pad_inches=0)
if output is not None:
if name is not None:
plt.savefig(output + "/" + name, dpi=dpi, bbox_inches="tight", pad_inches=0)

0 comments on commit 72dce9a

Please sign in to comment.