From 1521503ae23a0c94059ee66f906dc907b49b4347 Mon Sep 17 00:00:00 2001 From: matthias-k Date: Mon, 11 Nov 2024 13:03:28 +0100 Subject: [PATCH] fix hypothesis version to keep python 3.8 compatibility (#89) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Matthias Kümmerer --- .github/workflows/test-package-conda.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test-package-conda.yml b/.github/workflows/test-package-conda.yml index d4125d9..0993ca0 100644 --- a/.github/workflows/test-package-conda.yml +++ b/.github/workflows/test-package-conda.yml @@ -58,8 +58,9 @@ jobs: run: conda list - name: Test with pytest shell: bash -el {0} + # hypothesis=6.113.0 is the last version with python 3.8 support run: | - conda install pytest hypothesis + conda install pytest hypothesis=6.113.0 python setup.py build_ext --inplace python -m pytest --nomatlab --notheano --nodownload tests - name: test build and install