Skip to content

Commit c9ab11a

Browse files
committed
version 0.1.2 (faster version by fixing torchdiffeq version)
1 parent 0213002 commit c9ab11a

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ Consider citing this [paper](https://www.biorxiv.org/content/10.1101/2022.04.17.
2727

2828
# Installation
2929

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)
3131

3232
```console
3333
pip install sctour

docs/requirements.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
torch>=1.9.1
2-
torchdiffeq>=0.2.2
2+
torchdiffeq==0.2.2
33
numpy>=1.19.2
44
scanpy>=1.7.1
55
anndata>=0.7.5

sctour/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
from . import train
22
from . import vector_field as vf
3-
__version__ = '0.1.1'
3+
__version__ = '0.1.2'

setup.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ def get_readme():
66

77
setuptools.setup(
88
name='sctour',
9-
version='0.1.1',
9+
version='0.1.2',
1010
author='Qian Li',
1111
author_email='[email protected]',
1212
description='a deep learning architecture for robust inference and accurate prediction of cellular dynamics',
@@ -16,7 +16,7 @@ def get_readme():
1616
packages=setuptools.find_packages(),
1717
install_requires=[
1818
'torch>=1.9.1',
19-
'torchdiffeq>=0.2.2',
19+
'torchdiffeq==0.2.2',
2020
'numpy>=1.19.2',
2121
'scanpy>=1.7.1',
2222
'anndata>=0.7.5',
@@ -31,5 +31,5 @@ def get_readme():
3131
"Topic :: Scientific/Engineering :: Bio-Informatics",
3232
"Development Status :: 4 - Beta",
3333
],
34-
python_requires='>=3.8',
34+
python_requires='>=3.7',
3535
)

0 commit comments

Comments
 (0)