Skip to content

Commit

Permalink
removed unused environments and workflows (#1651)
Browse files Browse the repository at this point in the history
* removed unused environments and workflows

* added v3 contributor guide

* add shell
  • Loading branch information
rabernat authored Feb 7, 2024
1 parent 644423c commit 9e3e8c0
Show file tree
Hide file tree
Showing 7 changed files with 49 additions and 178 deletions.
41 changes: 0 additions & 41 deletions .github/workflows/minimal.yml

This file was deleted.

88 changes: 0 additions & 88 deletions .github/workflows/python-package.yml

This file was deleted.

49 changes: 49 additions & 0 deletions README-v3.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
# 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
```
14 changes: 0 additions & 14 deletions environment.yml

This file was deleted.

8 changes: 0 additions & 8 deletions requirements_dev_minimal.txt

This file was deleted.

4 changes: 0 additions & 4 deletions requirements_dev_numpy.txt

This file was deleted.

23 changes: 0 additions & 23 deletions requirements_dev_optional.txt

This file was deleted.

0 comments on commit 9e3e8c0

Please sign in to comment.