From 9db7d3cabe275f10f77767f3002fa0e7f7b87f6b Mon Sep 17 00:00:00 2001 From: Loic Jaquemet Date: Sat, 22 Apr 2023 09:53:40 -0600 Subject: [PATCH] try without baipp --- .github/workflows/ctypeslib-linux.yml | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) diff --git a/.github/workflows/ctypeslib-linux.yml b/.github/workflows/ctypeslib-linux.yml index 051ec3f..4f8a595 100644 --- a/.github/workflows/ctypeslib-linux.yml +++ b/.github/workflows/ctypeslib-linux.yml @@ -11,20 +11,19 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 - - name: Install dependencies + with: + # get all history and tags for setuptools_scm to find the right version + fetch-depth: 0 + - name: Install build dependencies run: | - pip install setuptools setuptools_scm twine wheel check-wheel-contents build - - name: Where is python, do we need actions/setup-python@v4 - run: pip -v list - - name: Build package - run: python -m build + pip install setuptools setuptools_scm wheel build + - name: Build package wheel + run: python -m build -w - name: Upload built artifacts. uses: actions/upload-artifact@v3 with: name: Packages path: ./dist/* - - name: Error out - run: error # - uses: hynek/build-and-inspect-python-package@v1 # id: build-package # packages are uploaded to Packages