Skip to content

Commit 27761ef

Browse files
mjayasurMichael Jayasuriyaivirshup
authored
deprecate scvi (#1703)
* deprecate scvi * Update .azure-pipelines.yml Co-authored-by: Isaac Virshup <[email protected]> * remove :func: links to scvi in release notes * remove tildes in front of scvi in release notes * Update docs/release-notes/1.5.0.rst Co-authored-by: Michael Jayasuriya <[email protected]> Co-authored-by: Isaac Virshup <[email protected]>
1 parent 976aa18 commit 27761ef

File tree

9 files changed

+5
-280
lines changed

9 files changed

+5
-280
lines changed

.azure-pipelines.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ jobs:
4343
- script: |
4444
python -m pip install --upgrade pip
4545
pip install pytest-cov wheel
46-
pip install .[dev,doc,test,louvain,leiden,magic,scvi,harmony,scrublet,scanorama]
46+
pip install .[dev,doc,test,louvain,leiden,magic,harmony,scrublet,scanorama,skmisc]
4747
displayName: 'Install dependencies'
4848
4949
- script: |

.travis.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ matrix:
1818
- name: "anndata dev"
1919
python: "3.7"
2020
install:
21-
- pip install .[dev,test,louvain,leiden,magic,scvi,harmony,skmisc,scrublet,scanorama]
21+
- pip install .[dev,test,louvain,leiden,magic,harmony,skmisc,scrublet,scanorama]
2222
- pip install git+https://github.com/theislab/anndata
2323
python:
2424
- '3.6'
@@ -29,7 +29,7 @@ cache:
2929
- directories:
3030
- data
3131
install:
32-
- pip install .[dev,test,louvain,leiden,magic,scvi,harmony,skmisc,scrublet,scanorama]
32+
- pip install .[dev,test,louvain,leiden,magic,harmony,skmisc,scrublet,scanorama]
3333
env:
3434
- MPLBACKEND=Agg
3535
script:

docs/release-notes/1.5.0.rst

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ The `1.5.0` release adds a lot of new functionality, much of which takes advanta
1717

1818
.. rubric:: External tools
1919

20-
- :func:`~scanpy.external.pp.scvi` for preprocessing with scVI :pr:`1085` :smaller:`G Xing`
20+
- `scanpy.external.pp.scvi` for preprocessing with scVI :pr:`1085` :smaller:`G Xing`
2121
- Guide for using :ref:`Scanpy in R <conversion_to_r>` :pr:`1186` :smaller:`L Zappia`
2222

2323
.. rubric:: Performance
@@ -48,4 +48,3 @@ The `1.5.0` release adds a lot of new functionality, much of which takes advanta
4848
- :func:`~scanpy.tl.louvain` for Louvain `0.6` :pr:`1197` :smaller:`I Virshup`
4949
- :func:`~scanpy.pp.highly_variable_genes` which could lead to incorrect results when the `batch_key` argument was used :pr:`1180` :smaller:`G Eraslan`
5050
- :func:`~scanpy.tl.ingest` where an inconsistent number of neighbors was used :pr:`1111` :smaller:`S Rybakov`
51-

docs/release-notes/1.7.0.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
- Updates for :func:`~scanpy.external.tl.palantir` and :func:`~scanpy.external.tl.palantir_results` :pr:`1245` :smaller:`A Mousa`
2828
- Fixes to :func:`~scanpy.external.tl.harmony_timeseries` docs :pr:`1248` :smaller:`A Mousa`
2929
- Support for `leiden` clustering by :func:`scanpy.external.tl.phenograph` :pr:`1080` :smaller:`A Mousa`
30-
- Deprecate :func:`~scanpy.external.pp.scvi` :pr:`1554` :smaller:`G Xing`
30+
- Deprecate `scanpy.external.pp.scvi` :pr:`1554` :smaller:`G Xing`
3131
- Updated default params of :func:`~scanpy.external.tl.sam` to work with larger data :pr:`1540` :smaller:`A Tarashansky`
3232

3333
.. rubric:: Documentation

pyproject.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,6 @@ requires = [
7171
louvain = ['python-igraph', 'louvain>=0.6,!=0.6.2']
7272
leiden = ['python-igraph', 'leidenalg']
7373
bbknn = ['bbknn']
74-
scvi = ['scvi==0.6.7']
7574
rapids = ['cudf>=0.9', 'cuml>=0.9', 'cugraph>=0.9']
7675
magic = ['magic-impute>=2.0']
7776
skmisc = ['scikit-misc>=0.1.3']

scanpy/external/__init__.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,6 @@
5858
5959
pp.dca
6060
pp.magic
61-
pp.scvi
6261
6362
6463
Tools: TL

scanpy/external/pp/__init__.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,5 @@
44
from ._harmony_integrate import harmony_integrate
55
from ._magic import magic
66
from ._scanorama_integrate import scanorama_integrate
7-
from ._scvi import scvi
87
from ._hashsolo import hashsolo
98
from ._scrublet import scrublet, scrublet_simulate_doublets

scanpy/external/pp/_scvi.py

Lines changed: 0 additions & 210 deletions
This file was deleted.

scanpy/tests/external/test_scvi.py

Lines changed: 0 additions & 61 deletions
This file was deleted.

0 commit comments

Comments
 (0)