Skip to content

Commit

Permalink
MNT: Python 3.13 (#48)
Browse files Browse the repository at this point in the history
* Test on python 3.13

* Improve install robustness for CI tests. As dones for spec2nii
  • Loading branch information
wtclarke authored Oct 31, 2024
1 parent d4a4ec9 commit 1630335
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/push_pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
strategy:
matrix:
os: ["ubuntu-latest"]
python-version: ["3.9", "3.10", "3.11", "3.12"]
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
steps:
- uses: actions/checkout@v4
with:
Expand All @@ -39,5 +39,5 @@ jobs:
shell: bash -l {0}
run: |
conda install pytest
pip install .
pytest -k "not orientation" tests
pip install --no-deps .
pytest -m "not orientation" tests
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
This document contains the pymapvbvd release history in reverse chronological order.

0.6.1 (Thursday 31st October 2024)
----------------------------------
- Testing on Python 3.13
- Changed scipy version requirements.

0.6.0 (Friday 28th June 2024)
-----------------------------
- Dropped support for Python 3.8
Expand Down
2 changes: 1 addition & 1 deletion requirements.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
dependencies:
- numpy>=1.26
- tqdm
- scipy==1.13.*
- scipy>=1.13
- matplotlib
- h5py
- six

0 comments on commit 1630335

Please sign in to comment.