File tree 4 files changed +6
-6
lines changed
4 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ Consider citing this [paper](https://www.biorxiv.org/content/10.1101/2022.04.17.
27
27
28
28
# Installation
29
29
30
- [ ![ Python Versions] ( https://img.shields.io/badge/python-3.8 +-brightgreen.svg )] ( https://pypi.org/project/sctour )
30
+ [ ![ Python Versions] ( https://img.shields.io/badge/python-3.7 +-brightgreen.svg )] ( https://pypi.org/project/sctour )
31
31
32
32
``` console
33
33
pip install sctour
Original file line number Diff line number Diff line change 1
1
torch >= 1.9.1
2
- torchdiffeq > =0.2.2
2
+ torchdiffeq = =0.2.2
3
3
numpy >= 1.19.2
4
4
scanpy >= 1.7.1
5
5
anndata >= 0.7.5
Original file line number Diff line number Diff line change 1
1
from . import train
2
2
from . import vector_field as vf
3
- __version__ = '0.1.1 '
3
+ __version__ = '0.1.2 '
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ def get_readme():
6
6
7
7
setuptools .setup (
8
8
name = 'sctour' ,
9
- version = '0.1.1 ' ,
9
+ version = '0.1.2 ' ,
10
10
author = 'Qian Li' ,
11
11
12
12
description = 'a deep learning architecture for robust inference and accurate prediction of cellular dynamics' ,
@@ -16,7 +16,7 @@ def get_readme():
16
16
packages = setuptools .find_packages (),
17
17
install_requires = [
18
18
'torch>=1.9.1' ,
19
- 'torchdiffeq> =0.2.2' ,
19
+ 'torchdiffeq= =0.2.2' ,
20
20
'numpy>=1.19.2' ,
21
21
'scanpy>=1.7.1' ,
22
22
'anndata>=0.7.5' ,
@@ -31,5 +31,5 @@ def get_readme():
31
31
"Topic :: Scientific/Engineering :: Bio-Informatics" ,
32
32
"Development Status :: 4 - Beta" ,
33
33
],
34
- python_requires = '>=3.8 ' ,
34
+ python_requires = '>=3.7 ' ,
35
35
)
You can’t perform that action at this time.
0 commit comments