Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

MNT: Python 3.13 #48

Merged
merged 2 commits into from
Oct 31, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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