Skip to content
Merged
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
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ jobs:
uses: PyO3/maturin-action@e83996d129638aa358a18fbd1dfb82f0b0fb5d3b # v1
with:
command: build
maturin-version: 1.10.2
maturin-version: 1.15.0
target: x86_64-pc-windows-msvc
args: >
--profile ci
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ jobs:
uses: PyO3/maturin-action@e83996d129638aa358a18fbd1dfb82f0b0fb5d3b # v1
with:
command: build
maturin-version: 1.10.2
maturin-version: 1.15.0
target: ${{ matrix.target.target }}
args: >
${{ (matrix.target.os == 'ubuntu' && '--zig') || '' }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/publish-dry-runs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,8 +48,8 @@ jobs:
rm -rf ../target/wheels/

uv venv
uv tool run maturin@1.10.2 build --interpreter python3.11 --zig
uv tool run maturin@1.10.2 build --interpreter python3.11 --zig --sdist
uv tool run maturin@1.15.0 build --interpreter python3.11 --zig
uv tool run maturin@1.15.0 build --interpreter python3.11 --zig --sdist

file_count=$(ls -1 ../target/wheels/ | wc -l)

Expand Down
1 change: 1 addition & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

32 changes: 16 additions & 16 deletions uv.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion vortex-python-cuda/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ classifiers = [
]

[build-system]
requires = ["maturin>=1.10.2,<2.0"]
requires = ["maturin>=1.15.0,<2.0"]
build-backend = "maturin"

[tool.uv]
Expand Down
3 changes: 3 additions & 0 deletions vortex-python/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -65,3 +65,6 @@ vortex-tui = { workspace = true, optional = true }
[dev-dependencies]
rstest = { workspace = true }
vortex-array = { path = "../vortex-array", features = ["_test-harness"] }
# Maturin 1.15 only packages resolved dependencies, but Cargo also needs the manifest
# of vortex-file's disabled optional tensor dependency when loading an sdist.
vortex-tensor = { workspace = true }
4 changes: 2 additions & 2 deletions vortex-python/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ Issues = "https://github.com/vortex-data/vortex/issues"
Benchmarks = "https://bench.vortex.dev"

[build-system]
requires = ["maturin>=1.10.2,<2.0"]
requires = ["maturin>=1.15.0,<2.0"]
build-backend = "maturin"

[tool.uv]
Expand All @@ -77,7 +77,7 @@ dev = [
"datasets>=4.0.0,<6",
"duckdb>=1.1.2",
"huggingface-hub>=0.34.0",
"maturin>=1.10.2",
"maturin>=1.15.0",
"numpy>=2.2.2",
"pandas-stubs>=2.2.3.241126",
"pandas[output-formatting]>=2.2.3",
Expand Down
Loading