Skip to content

Commit 9e3e8c0

Browse files
authored
removed unused environments and workflows (#1651)
* removed unused environments and workflows * added v3 contributor guide * add shell
1 parent 644423c commit 9e3e8c0

File tree

7 files changed

+49
-178
lines changed

7 files changed

+49
-178
lines changed

.github/workflows/minimal.yml

Lines changed: 0 additions & 41 deletions
This file was deleted.

.github/workflows/python-package.yml

Lines changed: 0 additions & 88 deletions
This file was deleted.

README-v3.md

Lines changed: 49 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
# V3 Contributor Guide
2+
3+
A bare-bones guide to contributing to V3.
4+
5+
Developed for the Feb. 2024 Zarr Sprint.
6+
7+
## Clone V3 branch
8+
9+
[Fork](https://github.com/zarr-developers/zarr-python/fork) zarr-python and clone it locally.
10+
11+
```
12+
git clone {your remote}
13+
git remote add upstream https://github.com/zarr-developers/zarr-python
14+
git fetch upstream
15+
git checkout --track upstream/v3
16+
```
17+
18+
## Set up your environment
19+
20+
Zarr uses [hatch](https://hatch.pypa.io/) for its build system.
21+
22+
```
23+
mamba install hatch
24+
```
25+
26+
or
27+
28+
```
29+
pip install hatch
30+
```
31+
32+
Then
33+
34+
```
35+
hatch env create test
36+
```
37+
38+
## Run the Tests
39+
40+
```
41+
hatch run test:run
42+
```
43+
44+
or
45+
46+
```
47+
hatch -e test shell
48+
pytest -v
49+
```

environment.yml

Lines changed: 0 additions & 14 deletions
This file was deleted.

requirements_dev_minimal.txt

Lines changed: 0 additions & 8 deletions
This file was deleted.

requirements_dev_numpy.txt

Lines changed: 0 additions & 4 deletions
This file was deleted.

requirements_dev_optional.txt

Lines changed: 0 additions & 23 deletions
This file was deleted.

0 commit comments

Comments
 (0)