swh:1:snp:72a4c465b82ec18a5d1f703821d91720268b476f
Raw File
Tip revision: ed3b277b2f498e3cab04c9416aaddf97eec8c3e2 authored by Isaac Virshup on 02 March 2023, 19:03:10 UTC
Backport of Prepare for pandas 2.0 (#2434) onto 1.9.x (#2435)
Tip revision: ed3b277
.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