Skip to content

Commit 11a5298

Browse files
committed
changelog and contribution instructions
1 parent 1f7c6a4 commit 11a5298

File tree

3 files changed

+30
-0
lines changed

3 files changed

+30
-0
lines changed

CHANGELOG.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
# Changelog
2+
3+
All notable changes to this project will be documented in this file.
4+
5+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
6+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7+
8+
## [2.6.2] 2025-10-21
9+
10+
### Added
11+
12+
- Contribution instructions (pypi, changelog, tests...)
13+
14+
### Fixed
15+
16+
- Compatibility with numpy 2

README.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,16 @@
33
[![codecov.io](https://img.shields.io/codecov/c/github/cortex-lab/phylib.svg)](http://codecov.io/github/cortex-lab/phylib?branch=master)
44

55
Electrophysiological data analysis library used by [phy](https://github.com/kwikteam/phy/), a spike sorting visualization software, and [ibllib](https://github.com/int-brain-lab/ibllib/).
6+
7+
8+
## Contribution
9+
10+
- run all tests using pytest `pytest phylib`
11+
- PR to main
12+
- publish to pypi:
13+
```shell
14+
rm -R dist
15+
rm -R build
16+
python setup.py sdist bdist_wheel
17+
twine upload dist/*
18+
```

requirements.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ numpy
22
scipy
33
dask
44
requests
5+
responses
56
tqdm
67
toolz
78
joblib

0 commit comments

Comments
 (0)