Skip to content

Commit eb54d57

Browse files
committed
Skip 3.7
1 parent 80e962d commit eb54d57

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

.github/workflows/tests.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
runs-on: ${{ matrix.os }}
2424
strategy:
2525
matrix:
26-
python: [ 3.7, 3.9 ]
26+
python: [ 3.8, 3.11 ]
2727
os: [ macos-latest, ubuntu-latest, windows-latest ]
2828
defaults:
2929
run:
@@ -68,7 +68,9 @@ jobs:
6868
- name: Install conda deps
6969
if: steps.cache.outputs.cache-hit != 'true'
7070
shell: bash -l {0} #We need a login shell to get conda
71-
run: conda install --yes --file=requirements/CI-tests-conda.txt
71+
run: |
72+
conda install mamba
73+
mamba install --yes --file=requirements/CI-tests-conda.txt
7274
7375
- name: Fix OSX Cache Write #OSX Won't let the cache restore due to file perms
7476
if: steps.cache.outputs.cache-hit != 'true' && matrix.os == 'macos-latest'

requirements/CI-tests-conda.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
humanize==4.8.0
2-
h5py<3.2
2+
h5py==3.7.0
33
msprime==1.2.0
44
pytest==7.4.2
55
pytest-cov==4.1.0

0 commit comments

Comments
 (0)