From 5285122613cfb042b61863b95aa47d027cf38940 Mon Sep 17 00:00:00 2001 From: Jelle <43064291+jelledouwe@users.noreply.github.com> Date: Mon, 27 Feb 2023 11:49:08 +0100 Subject: [PATCH] ci: fix poetry and setuptools version --- .github/workflows/ci.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 6d89e26..ff750e4 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -33,6 +33,7 @@ jobs: - name: Install Poetry uses: snok/install-poetry@v1 with: + version: 1.3.2 virtualenvs-create: true virtualenvs-in-project: true #---------------------------------------------- @@ -49,7 +50,10 @@ jobs: #---------------------------------------------- - name: Install dependencies if: steps.cached-poetry-dependencies.outputs.cache-hit != 'true' - run: poetry install --no-interaction --no-root + run: | + poetry run pip install setuptools==65.5.0 + poetry run pip install gym==0.21.0 + poetry install --no-interaction --no-root #---------------------------------------------- # install your root project, if required #----------------------------------------------