Skip to content

Commit c32345c

Browse files
authored
Update testing.yml
- rename to main - add tables installation
1 parent c445970 commit c32345c

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

.github/workflows/testing.yml

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@ name: Run Tests
22

33
on:
44
push:
5-
branches: [master]
5+
branches: [main]
66
pull_request:
7-
branches: [master]
7+
branches: [main]
88

99
jobs:
1010
build:
@@ -14,7 +14,7 @@ jobs:
1414
fail-fast: false
1515
matrix:
1616
os: [ubuntu-latest, macos-latest, windows-latest]
17-
python-version: ["3.10", "3.11", "3.12", "3.13"]
17+
python-version: ["3.12", "3.13"]
1818
include:
1919
- os: ubuntu-latest
2020
path: ~/.cache/pip
@@ -42,6 +42,10 @@ jobs:
4242
choco install ffmpeg
4343
fi
4444
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"
4549
- name: Install and test
4650
run: |
4751
python -m pip install --upgrade pip wheel poetry

0 commit comments

Comments
 (0)