Skip to content

Commit a8090d6

Browse files
authored
Merge pull request #16 from YosefLab/scvi_tools_1.0
Updates for `scvi-tools>=1.0`
2 parents bacf8a0 + 314b557 commit a8090d6

File tree

3 files changed

+5
-6
lines changed

3 files changed

+5
-6
lines changed

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
runs-on: ubuntu-latest
1515
strategy:
1616
matrix:
17-
python-version: ["3.8", "3.9", "3.10"]
17+
python-version: ["3.9", "3.10", "3.11"]
1818

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

pyproject.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@ classifiers = [
88
"Development Status :: 4 - Beta",
99
"Intended Audience :: Science/Research",
1010
"Natural Language :: English",
11-
"Programming Language :: Python :: 3.8",
1211
"Programming Language :: Python :: 3.9",
1312
"Programming Language :: Python :: 3.10",
13+
"Programming Language :: Python :: 3.11",
1414
"Operating System :: MacOS :: MacOS X",
1515
"Operating System :: Microsoft :: Windows",
1616
"Operating System :: POSIX :: Linux",
@@ -25,7 +25,7 @@ packages = [
2525
{include = "velovi"},
2626
]
2727
readme = "README.md"
28-
version = "0.2.1"
28+
version = "0.3.0"
2929

3030
[tool.poetry.dependencies]
3131
anndata = ">=0.7.5"
@@ -43,12 +43,12 @@ sphinxcontrib-bibtex = {version = "*", optional = true}
4343
ipykernel = {version = "*", optional = true}
4444
pytest = {version = ">=4.4", optional = true}
4545
pytest-cov = {version = "*", optional = true}
46-
python = ">=3.8,<4.0"
46+
python = ">=3.9,<4.0"
4747
python-igraph = {version = "*", optional = true}
4848
scanpy = {version = ">=1.6", optional = true}
4949
scanpydoc = {version = ">=0.5", optional = true}
5050
scvelo = ">=0.2.5"
51-
scvi-tools = ">=0.20.1"
51+
scvi-tools = ">=1.0.0"
5252
scikit-learn = ">=0.21.2"
5353
sphinx = {version = ">=4.1", optional = true}
5454
sphinx-autodoc-typehints = {version = "*", optional = true}

velovi/_model.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -177,7 +177,6 @@ def train(
177177
train_size=train_size,
178178
validation_size=validation_size,
179179
batch_size=batch_size,
180-
use_gpu=use_gpu,
181180
)
182181
training_plan = TrainingPlan(self.module, **plan_kwargs)
183182

0 commit comments

Comments
 (0)