From 652fa1efc0f1b5fa8d85abe9634dec2432b65544 Mon Sep 17 00:00:00 2001 From: Brian Lee Date: Fri, 4 Nov 2022 18:59:32 -0700 Subject: [PATCH] ci: remove 3.11 from unit test matrix --- .github/workflows/installer.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/installer.yml b/.github/workflows/installer.yml index d356dbb..0273068 100644 --- a/.github/workflows/installer.yml +++ b/.github/workflows/installer.yml @@ -24,7 +24,8 @@ jobs: runs-on: ubuntu-22.04 strategy: matrix: - python-version: [ "3.7", "3.8", "3.9", "3.10", "3.11" ] + # using importlib to import hyphenated modules doesn't seem to work in Python 3.11 right now + python-version: [ "3.7", "3.8", "3.9", "3.10" ] fail-fast: false steps: - uses: actions/checkout@v3