From a4f31dc3ec8b8e05f4efc883a98cbe49fe6bcd47 Mon Sep 17 00:00:00 2001 From: Alecks Gates Date: Sun, 27 Feb 2022 09:17:59 -0600 Subject: [PATCH] Build only wheels for python 3.8/3.9 --- .github/workflows/pypi_publish.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/pypi_publish.yml b/.github/workflows/pypi_publish.yml index 3882262..4adf813 100644 --- a/.github/workflows/pypi_publish.yml +++ b/.github/workflows/pypi_publish.yml @@ -20,6 +20,7 @@ jobs: uses: JRubics/poetry-publish@v1.10 with: python_version: "3.9.10" + build_format: wheel ignore_dev_requirements: "yes" pypi_token: ${{ secrets.PYPI_TOKEN }} extra_build_dependency_packages: "capnproto libzmq3-dev" @@ -27,6 +28,7 @@ jobs: uses: JRubics/poetry-publish@v1.10 with: python_version: "3.8.12" + build_format: wheel ignore_dev_requirements: "yes" pypi_token: ${{ secrets.PYPI_TOKEN }} extra_build_dependency_packages: "capnproto libzmq3-dev" \ No newline at end of file