From 6f4270a55231343221025197dc7ff3f2abeb74c0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Aleix=20Conchillo=20Flaqu=C3=A9?= Date: Thu, 4 Apr 2024 17:32:50 -0700 Subject: [PATCH] github: avoid caching in publish workflow --- .github/workflows/publish.yaml | 11 +---------- 1 file changed, 1 insertion(+), 10 deletions(-) diff --git a/.github/workflows/publish.yaml b/.github/workflows/publish.yaml index 672270737..1f470efae 100644 --- a/.github/workflows/publish.yaml +++ b/.github/workflows/publish.yaml @@ -22,15 +22,6 @@ jobs: uses: actions/setup-python@v4 with: python-version: '3.10' - - name: Cache virtual environment - uses: actions/cache@v3 - with: - # We are hashing requirements-dev.txt and requirements-extra.txt which - # contain all dependencies needed to run the tests and examples. - key: venv-${{ runner.os }}-${{ steps.setup_python.outputs.python-version}}-${{ hashFiles('linux-py3.10-requirements.txt') }}-${{ hashFiles('dev-requirements.txt') }} - path: .venv - - name: Install system packages - run: sudo apt-get install -y portaudio19-dev - name: Setup virtual environment run: | python -m venv .venv @@ -38,7 +29,7 @@ jobs: run: | source .venv/bin/activate python -m pip install --upgrade pip - pip install -r linux-py3.10-requirements.txt -r dev-requirements.txt + pip install -r dev-requirements.txt - name: Build project run: | source .venv/bin/activate