File tree 5 files changed +55
-5
lines changed
5 files changed +55
-5
lines changed Original file line number Diff line number Diff line change 1
1
[bumpversion]
2
- current_version = 0.0.1
2
+ current_version = 0.0.2
3
3
tag = True
4
4
commit = True
5
5
Original file line number Diff line number Diff line change
1
+ name : Release
2
+
3
+ on :
4
+ push :
5
+ tags :
6
+ - " *.*.*"
7
+
8
+ jobs :
9
+ release :
10
+ name : Release
11
+ runs-on : ubuntu-latest
12
+ steps :
13
+ # will use ref/SHA that triggered it
14
+ - name : Checkout code
15
+ uses : actions/checkout@v3
16
+
17
+ - name : Set up Python 3.10
18
+ uses : actions/setup-python@v2
19
+ with :
20
+ python-version : " 3.10"
21
+ - name : Install pypa/build
22
+ run : >-
23
+ python -m
24
+ pip install
25
+ build
26
+ --user
27
+ - name : Build a binary wheel and a source tarball
28
+ run : >-
29
+ python -m
30
+ build
31
+ --sdist
32
+ --wheel
33
+ --outdir dist/
34
+ .
35
+ - name : Publish a Python distribution to PyPI
36
+ uses : pypa/gh-action-pypi-publish@release/v1
37
+ with :
38
+ password : ${{ secrets.PYPI_API_TOKEN }}
Original file line number Diff line number Diff line change @@ -8,8 +8,14 @@ and this project adheres to [Semantic Versioning][].
8
8
[ keep a changelog ] : https://keepachangelog.com/en/1.0.0/
9
9
[ semantic versioning ] : https://semver.org/spec/v2.0.0.html
10
10
11
- ## [ Unreleased ]
11
+ ## 0.0.2 (2022-10-03)
12
12
13
13
### Added
14
14
15
- - Basic tool, preprocessing and plotting functions
15
+ - Jax Silhouette by @adamgayoso in #1
16
+ - Move silhouette to utils by @adamgayoso in #2
17
+ - Update README.md by @adamgayoso in #3
18
+ - Initial docs by @adamgayoso in #4
19
+ - Silhouette batch + labels by @adamgayoso in #5
20
+ - Add kmeans, nmi, ari metrics by @adamgayoso in #6
21
+ - Isolated labels + settings by @adamgayoso in #7
Original file line number Diff line number Diff line change @@ -30,7 +30,13 @@ pip install scib-metrics
30
30
```
31
31
-->
32
32
33
- 1 . Install the latest development version:
33
+ 1 . Install the latest release on PyPI:
34
+
35
+ ``` bash
36
+ pip install scib-metrics
37
+ ```
38
+
39
+ 2 . Install the latest development version:
34
40
35
41
``` bash
36
42
pip install git+https://github.com/yoseflab/scib-metrics.git@main
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ requires = ["hatchling"]
5
5
6
6
[project ]
7
7
name = " scib_metrics"
8
- version = " 0.0.1 "
8
+ version = " 0.0.2 "
9
9
description = " Accelerated and Python-only scIB metrics"
10
10
readme = " README.md"
11
11
requires-python = " >=3.8"
You can’t perform that action at this time.
0 commit comments