From 457572e35937ca44bb963caabd248b8efe426de4 Mon Sep 17 00:00:00 2001 From: diegoferigo Date: Fri, 30 Jun 2023 12:57:42 +0200 Subject: [PATCH] Add workaround for iDynTree and Python 3.11 --- .github/workflows/ci_cd.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/ci_cd.yml b/.github/workflows/ci_cd.yml index 9d003d9b2..cee7b48b9 100644 --- a/.github/workflows/ci_cd.yml +++ b/.github/workflows/ci_cd.yml @@ -76,6 +76,12 @@ jobs: path: dist name: dist + # Workaround: install iDynTree for Python 3.11 + - name: iDynTree on Python 3.11 + if: contains(matrix.os, 'ubuntu') && matrix.python == '3.11' + shell: bash + run: pip install --pre idyntree + - name: Install wheel (ubuntu) if: contains(matrix.os, 'ubuntu') shell: bash