From f3d4746ef067280e5c9d00bb6c6f162142e950ba Mon Sep 17 00:00:00 2001 From: Iisakki Rotko Date: Fri, 20 Dec 2024 12:33:42 +0100 Subject: [PATCH] ci: fix py37 tests --- .github/workflows/ci_tests.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/ci_tests.yml b/.github/workflows/ci_tests.yml index daa7b5f..99ca6c4 100644 --- a/.github/workflows/ci_tests.yml +++ b/.github/workflows/ci_tests.yml @@ -90,13 +90,19 @@ jobs: - linux: py36-test runs-on: ubuntu-20.04 + # virtualenv (which tox uses) dropped support for making python 3.6 environments in 20.18.0 + toxdeps: virtualenv==20.17.1 hatchling - linux: py38-test - macos: py37-test + # virtualenv (which tox uses) dropped support for making python 3.7 environments in 20.27.0 + toxdeps: virtualenv==20.26.6 hatchling - macos: py310-test - windows: py39-test - linux: py38-notebooks - macos: py37-notebooks + # virtualenv (which tox uses) dropped support for making python 3.7 environments in 20.27.0 + toxdeps: virtualenv==20.26.6 hatchling - windows: py39-notebooks