From 78696e073d790d088ee99baf4b893ecbb5750320 Mon Sep 17 00:00:00 2001 From: AggelosMargkas <39811197+AggelosMargkas@users.noreply.github.com> Date: Wed, 23 Aug 2023 18:31:09 +0300 Subject: [PATCH] Downgrade pipenv to 2023.8.23 Downgrade pipenv to 2023.8.23 to test CI --- .github/workflows/ci.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d96c6fc7..3a9e1539 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -4,7 +4,6 @@ on: [push] jobs: build: - runs-on: ubuntu-latest strategy: matrix: @@ -19,7 +18,7 @@ jobs: - name: Install dependencies run: | python -m pip install --upgrade pip - pip install pipenv + pip install pipenv=2023.7.23 cd src && pipenv install --dev - name: Run unit and integration tests run: cd src && pipenv run python -m unittest discover -s ..