Skip to content

Commit 8b23265

Browse files
committed
update: update version 0.4.5
1 parent 23aa59d commit 8b23265

File tree

8 files changed

+15
-13
lines changed

8 files changed

+15
-13
lines changed

.github/workflows/python-package.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
runs-on: ubuntu-latest
1616
strategy:
1717
matrix:
18-
python-version: [3.8]
18+
python-version: [3.7, 3.8]
1919

2020
steps:
2121
- uses: actions/checkout@v2

HISTORY.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
History
33
=======
44

5-
0.4.1 (2022-02-28)
5+
0.4.5 (2022-03-02)
66
------------------
77
0.4.0 (2022-02-03)
88
------------------

MANIFEST.in

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ include CONTRIBUTING.rst
33
include HISTORY.rst
44
include LICENSE
55
include README.rst
6+
include requirements.txt
67

78
recursive-include tests *
89
recursive-exclude * __pycache__

requirements.txt

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
bokeh == 2.4.2
2-
numba==0.55.1
3-
numpy==1.21.5
4-
#fa2 == 0.3.5
5-
Pillow==9.0.1
6-
scanpy==1.8.2
7-
scikit-image==0.19.2
8-
tensorflow==2.8.0
1+
bokeh>= 2.4.2
2+
leidenalg
3+
louvain
4+
numpy>=1.18,<1.22
5+
Pillow>=9.0.1
6+
scanpy>=1.8.2
7+
scikit-image>=0.19.2
8+
tensorflow

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 0.4.1
2+
current_version = 0.4.5
33
commit = True
44
tag = True
55

setup.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@
2828
"License :: OSI Approved :: BSD License",
2929
"Natural Language :: English",
3030
"Programming Language :: Python :: 3",
31+
"Programming Language :: Python :: 3.7",
3132
"Programming Language :: Python :: 3.8",
3233
],
3334
description="A downstream analysis toolkit for Spatial Transcriptomic data",
@@ -48,6 +49,6 @@
4849
test_suite="tests",
4950
tests_require=test_requirements,
5051
url="https://github.com/BiomedicalMachineLearning/stLearn",
51-
version="0.4.1",
52+
version="0.4.5",
5253
zip_safe=False,
5354
)

stlearn/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
__author__ = """Genomics and Machine Learning lab"""
44
__email__ = "duy.pham@uq.edu.au"
5-
__version__ = "0.4.1"
5+
__version__ = "0.4.5"
66

77

88
from . import add

stlearn/tools/microenv/__init__.py

Whitespace-only changes.

0 commit comments

Comments
 (0)