Skip to content

Commit

Permalink
some cleanups
Browse files Browse the repository at this point in the history
  • Loading branch information
falexwolf committed Mar 1, 2018
1 parent b3d6b9d commit c8d0cd9
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
# Scanpy
.pytest_cache/
.scanpy
.coverage
coverage.xml
Expand Down
7 changes: 4 additions & 3 deletions scanpy/__init__.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
"""Scanpy - Single-Cell Analysis in Python
Reference
---------
Wolf, Angerer & Theis, bioRxiv 174029 (2017)
See scanpy.api for the API.
"""

import sys
Expand All @@ -24,6 +22,9 @@
.format(pd.__version__))

import anndata
# NOTE: LooseVersion cannot deal with the versioneer format strings
# that involve something like 0.5.3+7g194938
# Hence, the following hack
if anndata.__version__ < LooseVersion('0.5'):
raise ImportError('Scanpy {} needs anndata version >=0.5, not {}.\n'
'Run `pip install anndata --upgrade`.'
Expand Down
Empty file removed scanpy/tests/readwrite.py
Empty file.

0 comments on commit c8d0cd9

Please sign in to comment.