Skip to content

Commit

Permalink
Update python versions in CI (#73)
Browse files Browse the repository at this point in the history
* 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]>
  • Loading branch information
catanzaromj and Michael Catanzaro authored Oct 19, 2023
1 parent c35fa04 commit e1fb188
Show file tree
Hide file tree
Showing 9 changed files with 788 additions and 568 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/python-app.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.6, 3.7, 3.8]
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12"]

steps:
- uses: actions/checkout@v2
Expand All @@ -39,4 +39,4 @@ jobs:
pytest --cov persim
- name: Upload coverage results
run: |
bash <(curl -s https://codecov.io/bash)
bash <(curl -s https://codecov.io/bash)
4 changes: 4 additions & 0 deletions RELEASE.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
0.3.2
- Update codebase to support python 3.7 - 3.12.
- Change `PersistenceLandscaper` API for sklearn compatibility.

0.3.1
- Fixed bug with repeated intervals in bottleneck
- Tidied up API for indicating matchings for bottleneck and wasserstein, and updated notebook
Expand Down
2 changes: 1 addition & 1 deletion persim/_version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.3.1"
__version__ = "0.3.2"
Loading

0 comments on commit e1fb188

Please sign in to comment.