swh:1:snp:72a4c465b82ec18a5d1f703821d91720268b476f
Raw File
Tip revision: 93f927a53cc61fe79325cfc76bb393b7159939c9 authored by Isaac Virshup on 29 June 2021, 08:23:09 UTC
Start release notes for 1.9.0 (#1906)
Tip revision: 93f927a
.gitignore
# Scanpy outfiles
/cache/
/data/
/write/

# Docs
/docs/_build/
/docs/generated/
/docs/data/

# tests
/.cache/
/.pytest_cache/
/scanpy/tests/test*.h5ad
/scanpy/tests/figures/
/scanpy/tests/notebooks/figures/

# Environment management
/Pipfile
/Pipfile.lock

# always-ignore extensions
*~

# Python build files
__pycache__/
/dist/
/build/
/scanpy.egg-info/
/*-env/
/env-*/

# OS stuff
.DS_Store
Thumbs.db
.ipynb_checkpoints/
.directory

# IDEs and editors
/.idea/
/.vscode/

# Test artifacts
**/test-results.xml
back to top