From 45b0eb771c46ba40050b6eb01c97d346e219c73d Mon Sep 17 00:00:00 2001 From: cwilvx Date: Thu, 8 May 2025 20:07:12 +0300 Subject: [PATCH] try: append server module in requirments --- .github/workflows/release.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 003ff584..63c8ea07 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -77,11 +77,11 @@ jobs: - name: Activate virtualenv (linux) if: matrix.os == 'ubuntu-22.04' run: | - sudo apt-get install libev-dev -y > /dev/null && source .venv/bin/activate && pip install bjoern + sudo apt-get install libev-dev -y > /dev/null && source .venv/bin/activate && echo "bjoern==3.2.2" >> requirements.txt - name: Activate virtualenv (windows) if: matrix.os == 'windows-2019' run: | - .venv\Scripts\Activate && pip install waitress + .venv\Scripts\Activate && echo "waitress==3.0.2" >> requirements.txt - name: Install dependencies run: | pip install -r requirements.txt