Skip to content

Commit

Permalink
ci: test oldest numpy version
Browse files Browse the repository at this point in the history
  • Loading branch information
paulmueller committed Jun 16, 2024
1 parent d792810 commit 8b7901d
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
python-version: ['3.9', '3.10', '3.11']
python-version: ['3.6', '3.11']
os: [macos-latest, ubuntu-latest, windows-latest]

steps:
Expand All @@ -28,6 +28,10 @@ jobs:
pip install -e .[dev]
# show installed packages
pip freeze
- name: install oldest supported numpy for Python 3.6
if matrix.python-version == '3.6'
run: |
python -m pip install numpy==1.19.2
- name: Test with pytest
run: |
coverage run --source=igor2 -m pytest tests
Expand Down
2 changes: 2 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
0.5.7
- support older Python and NumPy version (#16)
0.5.6
- enh: allow specifying the byte order when loading data
0.5.5
Expand Down

0 comments on commit 8b7901d

Please sign in to comment.