Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

removed unused environments and workflows #1651

Merged
merged 3 commits into from
Feb 7, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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.

Loading