From 28dc7997594fa6ffa98ee57013d51088de459e95 Mon Sep 17 00:00:00 2001 From: gruebel Date: Sun, 30 Jul 2023 19:27:00 +0200 Subject: [PATCH] update deps --- .github/workflows/pr-test.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/.github/workflows/pr-test.yml b/.github/workflows/pr-test.yml index 98efb4a5974..85f4fe89170 100644 --- a/.github/workflows/pr-test.yml +++ b/.github/workflows/pr-test.yml @@ -63,6 +63,11 @@ jobs: # remove venv, if exists pipenv --rm || true pipenv --python ${{ matrix.python }} + + if [ ${{ matrix.python }} == '3.12-dev' ]; then + pipenv update + fi + pipenv install --dev -v - name: Unit tests env: @@ -106,6 +111,11 @@ jobs: # remove venv, if exists pipenv --rm || true pipenv --python ${{ matrix.python }} + + if [ ${{ matrix.python }} == '3.12-dev' ]; then + pipenv run pip install setuptools + fi + pipenv run pip install pytest pytest-xdist pipenv run python setup.py sdist bdist_wheel bash -c 'pipenv run pip install dist/checkov-*.whl'