Skip to content

Commit

Permalink
Merge branch 'stac-utils:main' into aws-test
Browse files Browse the repository at this point in the history
  • Loading branch information
jrjdavidson authored Feb 3, 2025
2 parents 37c34cc + ee46d0a commit 3f05fc9
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/python-cli.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
uses: PyO3/maturin-action@v1
with:
target: ${{ matrix.platform.target }}
args: --release --out dist --find-interpreter --manifest-path crates/cli/Cargo.toml
args: --release --out dist --find-interpreter --manifest-path crates/cli/Cargo.toml -F duckdb/bundled
sccache: "true"
manylinux: auto
- name: Upload wheels
Expand Down Expand Up @@ -67,7 +67,7 @@ jobs:
uses: PyO3/maturin-action@v1
with:
target: ${{ matrix.platform.target }}
args: --release --out dist --find-interpreter --manifest-path crates/cli/Cargo.toml
args: --release --out dist --find-interpreter --manifest-path crates/cli/Cargo.toml -F duckdb/bundled
sccache: "true"
manylinux: musllinux_1_2
- name: Upload wheels
Expand Down Expand Up @@ -95,7 +95,7 @@ jobs:
uses: PyO3/maturin-action@v1
with:
target: ${{ matrix.platform.target }}
args: --release --out dist --find-interpreter --manifest-path crates/cli/Cargo.toml
args: --release --out dist --find-interpreter --manifest-path crates/cli/Cargo.toml -F duckdb/bundled
sccache: "true"
- name: Upload wheels
uses: actions/upload-artifact@v4
Expand All @@ -121,7 +121,7 @@ jobs:
uses: PyO3/maturin-action@v1
with:
target: ${{ matrix.platform.target }}
args: --release --out dist --find-interpreter --manifest-path crates/cli/Cargo.toml
args: --release --out dist --find-interpreter --manifest-path crates/cli/Cargo.toml -F duckdb/bundled
sccache: "true"
- name: Upload wheels
uses: actions/upload-artifact@v4
Expand Down
1 change: 1 addition & 0 deletions crates/cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ python = ["dep:pyo3", "pgstac"]
anyhow.workspace = true
axum.workspace = true
clap = { workspace = true, features = ["derive"] }
duckdb.workspace = true # we depend on it directly so that we can bundle it for the Python wheels
object_store.workspace = true
pyo3 = { workspace = true, optional = true }
reqwest.workspace = true
Expand Down
1 change: 1 addition & 0 deletions crates/cli/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
use anyhow::{anyhow, Error, Result};
use clap::{Parser, Subcommand};
use duckdb as _;
use stac::{geoparquet::Compression, Collection, Format, Item, Links, Migrate, Validate};
use stac_api::{GetItems, GetSearch, Search};
use stac_server::Backend;
Expand Down

0 comments on commit 3f05fc9

Please sign in to comment.