We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c445970 commit c32345cCopy full SHA for c32345c
.github/workflows/testing.yml
@@ -2,9 +2,9 @@ name: Run Tests
2
3
on:
4
push:
5
- branches: [master]
+ branches: [main]
6
pull_request:
7
8
9
jobs:
10
build:
@@ -14,7 +14,7 @@ jobs:
14
fail-fast: false
15
matrix:
16
os: [ubuntu-latest, macos-latest, windows-latest]
17
- python-version: ["3.10", "3.11", "3.12", "3.13"]
+ python-version: ["3.12", "3.13"]
18
include:
19
- os: ubuntu-latest
20
path: ~/.cache/pip
@@ -42,6 +42,10 @@ jobs:
42
choco install ffmpeg
43
fi
44
shell: bash
45
+ - name: Install PyTables through Conda
46
+ shell: bash -el {0} # Important: activates the conda environment
47
+ run: |
48
+ conda install pytables==3.8.0 "numpy<2"
49
- name: Install and test
50
run: |
51
python -m pip install --upgrade pip wheel poetry
0 commit comments