From 591b05157db222755c96ceeb6a3f99975b1f961c Mon Sep 17 00:00:00 2001 From: Paulo V C Medeiros Date: Tue, 14 Nov 2023 07:39:09 +0100 Subject: [PATCH] Add PortAudio dep in test workflow --- .github/workflows/tests.yaml | 8 ++++++++ pyproject.toml | 2 +- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/.github/workflows/tests.yaml b/.github/workflows/tests.yaml index f59c8e4..fcc8035 100644 --- a/.github/workflows/tests.yaml +++ b/.github/workflows/tests.yaml @@ -35,6 +35,14 @@ jobs: - name: Check out repository uses: actions/checkout@v3 + #---------------------------------------------- + # Install PortAudio + #---------------------------------------------- + - name: Install PortAudio + run: | + apt-get update + apt-get --assume-yes install portaudio19-dev python-all-dev + #---------------------------------------------- # --- configure poetry & install project ---- #---------------------------------------------- diff --git a/pyproject.toml b/pyproject.toml index 22369af..e9e9053 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ license = "MIT" name = "pyrobbot" readme = "README.md" - version = "0.2.0" + version = "0.2.1" [build-system] build-backend = "poetry.core.masonry.api"