Skip to content

chore: Removes old setup.py #167

chore: Removes old setup.py

chore: Removes old setup.py #167

Workflow file for this run

name: bdist_wheel
on:
- push
- workflow_dispatch
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.11", "3.12"]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependences
run: |
python -m pip install --upgrade pip poetry
- name: Build
run: |
poetry build
- name: Upload wheels
uses: actions/upload-artifact@v3
with:
name: bdist_wheel
path: |
dist/*.whl