Skip to content

Update pypi.yml

Update pypi.yml #24

Workflow file for this run

name: Build
on: [push, pull_request]
jobs:
build:
name: Build distribution for Python ${{ matrix.python-version }} windows_x64
runs-on: windows-latest
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install pypa/build
run: python -m pip install build>=1.2.1 --user
- name: Build a binary wheel and a source tarball
run: python -m build
- name: Store the distribution packages
uses: actions/upload-artifact@v4
with:
name: python-package-distributions-${{ matrix.python-version }}
path: dist/