Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

build(python): fix python pkg version #10049

Merged
merged 7 commits into from
Dec 21, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix python sdist to be pyproject.toml aware
  • Loading branch information
Mause committed Dec 19, 2023
commit 5fc8e7f7916701813e70c167312de97924b85dbf
4 changes: 2 additions & 2 deletions .github/workflows/Python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ jobs:

- name: Install
shell: bash
run: pip install cibuildwheel twine
run: pip install cibuildwheel twine build

- name: Setup Ccache
uses: hendrikmuhs/ccache-action@main
Expand All @@ -74,7 +74,7 @@ jobs:
shell: bash
working-directory: tools/pythonpkg
run: |
python setup.py sdist
pyproject-build . --sdist
mkdir duckdb_tarball && tar xvf dist/duckdb-*.tar.gz --strip-components=1 -C duckdb_tarball
- name: Build
shell: bash
Expand Down