Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/zarr-developers/zarr-python

An implementation of chunked, compressed, N-dimensional arrays for Python.
https://github.com/zarr-developers/zarr-python

compressed ndimensional-arrays python zarr

Last synced: about 23 hours ago
JSON representation

An implementation of chunked, compressed, N-dimensional arrays for Python.

Awesome Lists containing this project

README

        

# V3 Contributor Guide

A bare-bones guide to contributing to V3.

Developed for the Feb. 2024 Zarr Sprint.

## Clone V3 branch

[Fork](https://github.com/zarr-developers/zarr-python/fork) zarr-python and clone it locally.

```
git clone {your remote}
git remote add upstream https://github.com/zarr-developers/zarr-python
git fetch upstream
git checkout --track upstream/v3
```

## Set up your environment

Zarr uses [hatch](https://hatch.pypa.io/) for its build system.

```
mamba install hatch
```

or

```
pip install hatch
```

Then

```
hatch env create test
```

## Run the Tests

```
hatch run test:run
```

or

```
hatch -e test shell
pytest -v
```