Skip to content

Commit e1fb188

Browse files
authored
Update python versions in CI (#73)
* Update python versions in CI * Run black * Fix transformer API to match sklearn * change collections.Iterable to typing.Iterable * Update tests --------- Co-authored-by: Michael Catanzaro <[email protected]>
1 parent c35fa04 commit e1fb188

File tree

9 files changed

+788
-568
lines changed

9 files changed

+788
-568
lines changed

.github/workflows/python-app.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
runs-on: ubuntu-latest
1515
strategy:
1616
matrix:
17-
python-version: [3.6, 3.7, 3.8]
17+
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12"]
1818

1919
steps:
2020
- uses: actions/checkout@v2
@@ -39,4 +39,4 @@ jobs:
3939
pytest --cov persim
4040
- name: Upload coverage results
4141
run: |
42-
bash <(curl -s https://codecov.io/bash)
42+
bash <(curl -s https://codecov.io/bash)

RELEASE.txt

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
0.3.2
2+
- Update codebase to support python 3.7 - 3.12.
3+
- Change `PersistenceLandscaper` API for sklearn compatibility.
4+
15
0.3.1
26
- Fixed bug with repeated intervals in bottleneck
37
- Tidied up API for indicating matchings for bottleneck and wasserstein, and updated notebook

persim/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "0.3.1"
1+
__version__ = "0.3.2"

0 commit comments

Comments
 (0)