Skip to content

Commit fb34dc2

Browse files
committed
fix: mkdir
1 parent 6f9d503 commit fb34dc2

File tree

3 files changed

+4
-6
lines changed

3 files changed

+4
-6
lines changed

.github/workflows/ci.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@ jobs:
4343
- name: Install libduckdb
4444
run: |
4545
wget https://github.com/duckdb/duckdb/releases/download/v${{ env.duckdb-version }}/libduckdb-${{ matrix.os.duckdb-slug }}.zip
46+
mkdir -p ${{ github.workspace }}/opt/duckdb
4647
unzip libduckdb-${{ matrix.os.duckdb-slug }}.zip -d ${{ github.workspace }}/opt/duckdb
4748
- name: Sync
4849
run: uv sync --no-install-project

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ crate-type = ["cdylib"]
1111
[dependencies]
1212
clap = "4.5.30"
1313
geojson = "0.24.1"
14-
pyo3 = { version = "0.23.4", features = ["abi3-py310"] }
14+
pyo3 = { version = "0.23.4", features = ["abi3-py310", "extension-module"] }
1515
pyo3-async-runtimes = { version = "0.23.0", features = [
1616
"tokio",
1717
"tokio-runtime",

pyproject.toml

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "stacrs"
3-
description = "A small, no-dependency Python package for STAC, using Rust under the hood."
3+
description = "A no-dependency Python package for STAC, using Rust under the hood."
44
readme = "README.md"
55
authors = [{ name = "Pete Gadomski", email = "[email protected]" }]
66
requires-python = ">=3.10"
@@ -45,7 +45,7 @@ asyncio_default_fixture_loop_scope = "function"
4545
dev = [
4646
"maturin>=1.7.4",
4747
"mypy>=1.11.2",
48-
"pyarrow>=18.0.0",
48+
"pyarrow>=19.0.1",
4949
"pystac[validation]>=1.11.0",
5050
"pytest>=8.3.3",
5151
"pytest-asyncio>=0.25.1",
@@ -66,6 +66,3 @@ default-groups = ["dev", "docs"]
6666
[build-system]
6767
requires = ["maturin>=1.7,<2.0"]
6868
build-backend = "maturin"
69-
70-
[tool.maturin]
71-
features = ["pyo3/extension-module"]

0 commit comments

Comments
 (0)