From 5b1b16e844515bfa8e4fc3d4b90b7182d3af4fc2 Mon Sep 17 00:00:00 2001 From: Torrin <1843540+torrinba@users.noreply.github.com> Date: Mon, 17 Jun 2024 15:38:22 -0700 Subject: [PATCH] Disable Python 3.9 regression test This build is can no longer supported because of known issues with the pint module https://github.com/hgrecco/pint/issues/1974#issuecomment-2172693837 --- .github/workflows/regression.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/regression.yml b/.github/workflows/regression.yml index 7dfde275..1c10fb95 100644 --- a/.github/workflows/regression.yml +++ b/.github/workflows/regression.yml @@ -16,7 +16,8 @@ jobs: strategy: fail-fast: false matrix: - python-version: ['3.6', '3.7', '3.8', '3.9', '3.10', '3.11'] + python-version: ['3.6', '3.7', '3.8', '3.10', '3.11'] + # 3.9 no longer works because pint does not support it https://github.com/hgrecco/pint/issues/1974#issuecomment-2172693837 # 3.12 does not yet work because numpy removed numpy.distutils that pygacode relies on steps: