From 0be70deb00f1ee8ac394f29e93306e4b8085e8da Mon Sep 17 00:00:00 2001 From: Conrad Date: Sun, 24 Nov 2024 18:18:13 +0100 Subject: [PATCH] fix: fixed pipeline --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index fbd401b..c30e133 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -40,7 +40,7 @@ jobs: with: python-version: '3.12' - run: python -m pip install --upgrade pip - - run: python -m pip install -r requirements.txt + - run: python -m pip install ".[all]" - run: python test.py tag_and_publish: @@ -95,7 +95,7 @@ jobs: - name: Install dependencies run: | python -m pip install --upgrade pip - pip install ".[all]" + pip install ".[build]" python setup.py sdist bdist_wheel - name: Build and publish