fix: fixed pipeline

This commit is contained in:
2024-11-24 18:18:13 +01:00
parent 0418c75e19
commit 0be70deb00

View File

@@ -40,7 +40,7 @@ jobs:
with: with:
python-version: '3.12' python-version: '3.12'
- run: python -m pip install --upgrade pip - 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 - run: python test.py
tag_and_publish: tag_and_publish:
@@ -95,7 +95,7 @@ jobs:
- name: Install dependencies - name: Install dependencies
run: | run: |
python -m pip install --upgrade pip python -m pip install --upgrade pip
pip install ".[all]" pip install ".[build]"
python setup.py sdist bdist_wheel python setup.py sdist bdist_wheel
- name: Build and publish - name: Build and publish