Skip to content

Commit 49d9fc6

Browse files
committed
Test 3.11
1 parent 7573d9e commit 49d9fc6

File tree

1 file changed

+9
-2
lines changed

1 file changed

+9
-2
lines changed

.github/workflows/ci.yml

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
strategy:
2525
fail-fast: false
2626
matrix:
27-
python-version: [ "3.7", "3.8", "3.9", "3.10"]
27+
python-version: [ "3.7", "3.8", "3.9", "3.10", "3.11" ]
2828
runs-on: [ubuntu-latest, macos-latest, windows-latest]
2929

3030
steps:
@@ -34,9 +34,16 @@ jobs:
3434
with:
3535
python-version: ${{ matrix.python-version }}
3636

37+
38+
- name: Install h5py
39+
if: ${{ matrix.python-version == '3.11' }}
40+
run: |
41+
#if [[ ${{ matrix.runs-on }} == *"macos"* ]]; then brew install graphviz ; fi
42+
#if [[ ${{ matrix.runs-on }} == *"ubuntu"* ]]; then sudo apt-get install libhdf5-serial-dev liblzo2-dev -y; pip3 install --no-binary=h5py h5py ; fi
43+
pip list
44+
3745
- name: Install package
3846
run: |
39-
if [[ ${{ matrix.python-version }} == 3.11 ]]; then sudo apt-get install libhdf5-serial-dev liblzo2-dev -y; pip3 install --no-binary=h5py h5py ; fi
4047
python -m pip install --upgrade pip
4148
pip install .[dev]
4249

0 commit comments

Comments
 (0)