From 42140a496bf6898f988edf8ed421f4e67796d573 Mon Sep 17 00:00:00 2001 From: Timur Bazhirov Date: Wed, 18 Dec 2024 19:31:42 -0800 Subject: [PATCH] chore: tmp disable py 3.12 and 3.13 --- .github/workflows/cicd.yml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/workflows/cicd.yml b/.github/workflows/cicd.yml index 97f61bef..c0e85b66 100644 --- a/.github/workflows/cicd.yml +++ b/.github/workflows/cicd.yml @@ -41,8 +41,12 @@ jobs: - 3.9.x - 3.10.x - 3.11.x - - 3.12.x - - 3.13.x + # Re-enable after fixing the below: + # AttributeError: module 'pkgutil' has no attribute 'ImpImporter'. Did you mean: 'zipimporter'? + # https://stackoverflow.com/questions/77364550/attributeerror-module-pkgutil-has-no-attribute-impimporter-did-you-mean + # The python env in `actions` has to have an updated pip version + # - 3.12.x + # - 3.13.x steps: - name: Checkout this repository