Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
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
26 changes: 12 additions & 14 deletions .github/workflows/python-wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -214,24 +214,22 @@ jobs:
# path: dist

release:
runs-on: ubuntu-latest
name: Release
environment:
name: pypi-release
url: https://pypi.org/p/geodatafusion
runs-on: ubuntu-latest
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags')
needs: [macos, windows, linux]
permissions:
# Used to upload release artifacts
contents: write
# IMPORTANT: this permission is mandatory for trusted publishing
id-token: write
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags')
needs: [macos, windows, linux]
steps:
- uses: actions/download-artifact@v4

- uses: actions/setup-python@v6
with:
python-version: 3.11

- name: Publish package distributions to PyPI
uses: pypa/gh-action-pypi-publish@release/v1
path: dist
merge-multiple: true
- name: Publish to PyPI
uses: PyO3/maturin-action@v1
env:
MATURIN_PYPI_TOKEN: ${{ secrets.PYPI_API_TOKEN }}
with:
command: upload
args: --non-interactive --skip-existing dist/*
2 changes: 1 addition & 1 deletion python/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "geodatafusion-python"
version = "0.3.0"
version = "0.2.0"
edition = "2024"
authors = ["Kyle Barron <kylebarron2@gmail.com>"]
description = "Python bindings for geodatafusion, a geospatial extension to DataFusion"
Expand Down
1 change: 0 additions & 1 deletion python/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,6 @@ prints:

| Python Release | DataFusion Version |
|----------------|-------------------|
| v0.3.0 | 53.x |
| v0.2.0 | 52.x |
| v0.1.2 | 50.x |
| v0.1.1 | 49.x |
Expand Down
Loading