From 3dd2fb122063ddf4707fab0f541900aa0ea5a6ab Mon Sep 17 00:00:00 2001 From: Roberto Rossini <71787608+robomics@users.noreply.github.com> Date: Fri, 28 Oct 2022 16:35:04 +0200 Subject: [PATCH] Bugfix --- .github/workflows/ci.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 8b9fa58..3f38f58 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -189,11 +189,14 @@ jobs: - name: Extract Package run: tar -xf cryptonite-pkg.tar.xz + - name: Generate requirements.txt + run: echo 'twine>=4' > requirements.txt + - name: Setup Python uses: actions/setup-python@v4 with: - python-version: "3.10" - cache-dependency-path: "pkg/pyproject.toml" + python-version: "3.11" + cache-dependency-path: "requirements.txt" cache: "pip" - name: Install twine