diff --git a/.github/workflows/test_pypi.yml b/.github/workflows/test_pypi.yml index 9271738..d8ffc8c 100644 --- a/.github/workflows/test_pypi.yml +++ b/.github/workflows/test_pypi.yml @@ -12,6 +12,9 @@ jobs: runs-on: ubuntu-20.04 steps: - uses: actions/checkout@v3 + - uses: actions/setup-python@v4 + with: + python-version: '3.11' - name: Build wheels run: | @@ -19,13 +22,16 @@ jobs: - uses: actions/upload-artifact@v3 with: - path: ./wheelhouse/*.whl + path: ./wheelhouse/mlir_python_utils*.whl build_sdist: name: Build source distribution runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 + - uses: actions/setup-python@v4 + with: + python-version: '3.11' - name: Build sdist run: pipx run build --sdist diff --git a/.github/workflows/wheels.yml b/.github/workflows/wheels.yml index edc2146..dcb26d0 100644 --- a/.github/workflows/wheels.yml +++ b/.github/workflows/wheels.yml @@ -29,7 +29,7 @@ jobs: - name: Upload wheels uses: actions/upload-artifact@v3 with: - path: wheelhouse/*.whl + path: wheelhouse/mlir_python_utils*.whl name: build_artifact upload_wheels: diff --git a/pyproject.toml b/pyproject.toml index f75868a..752abdf 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,8 +1,10 @@ [project] name = "mlir-python-utils" -version = "0.0.1" +version = "0.0.2" +description = "The missing pieces (as far as boilerplate reduction goes) of the upstream MLIR python bindings." requires-python = ">=3.11" license = { file = "LICENSE" } +readme = "README.md" dependencies = [ "numpy", "black",