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 docs/build/backends/pixi-build-mojo.md
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ name = "greetings"
version = "0.1.0"

[package.build]
backend = { name = "pixi-build-mojo", version = "0.1.*" }
backend = { name = "pixi-build-mojo", version = "0.*" }

[tasks]

Expand Down
1 change: 0 additions & 1 deletion docs/build/backends/pixi-build-ros.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,6 @@ To use the ROS backend in your `pixi.toml`, add it to your package's build confi
[workspace]
preview = ["pixi-build"]
channels = [
"https://prefix.dev/pixi-build-backends",
"https://prefix.dev/robostack-jazzy", # or robostack-humble, robostack-noetic, etc.
"https://prefix.dev/conda-forge"
]
Expand Down
2 changes: 1 addition & 1 deletion docs/reference/pixi_manifest.md
Original file line number Diff line number Diff line change
Expand Up @@ -1297,7 +1297,7 @@ For platform-specific build configuration, use the `[package.build.target.<platf

```toml
[package.build]
backend = { name = "pixi-build-cmake", version = "0.3.*" }
backend = { name = "pixi-build-cmake", version = "0.*" }

[package.build.config]
# Base configuration applied to all platforms
Expand Down
7 changes: 2 additions & 5 deletions docs/source_files/pixi_tomls/dependency_types.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,9 @@ name = "simple_cpp"
version = "0.1.0"

[package.build.backend]
channels = [
"https://prefix.dev/pixi-build-backends",
"https://prefix.dev/conda-forge",
]
channels = ["https://prefix.dev/conda-forge"]
name = "pixi-build-cmake"
version = "0.1.*"
version = "0.*"
# --8<-- [start:dependencies]
[package.build-dependencies]
cxx-compiler = "*"
Expand Down
7 changes: 2 additions & 5 deletions docs/source_files/pixi_tomls/pixi-build-backend-channel.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,8 @@ preview = ["pixi-build"]

# --8<-- [start:build]
[package.build]
backend = { name = "pixi-build-python", version = "0.4.*" }
channels = [
"https://prefix.dev/pixi-build-backends",
"https://prefix.dev/conda-forge",
]
backend = { name = "pixi-build-python", version = "0.*" }
channels = ["https://prefix.dev/conda-forge"]
# --8<-- [end:build]
[package]
name = "pixi-build-backend-channel"
Expand Down
2 changes: 1 addition & 1 deletion docs/source_files/pixi_tomls/pixi-package-manifest.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ repository = "https://github.com/user/repo"

# --8<-- [start:build-system]
[package.build]
backend = { name = "pixi-build-cmake", version = "0.3.*" }
backend = { name = "pixi-build-cmake", version = "0.*" }
# not required:
channels = ["https://prefix.dev/conda-forge"]
config = { key = "value" } # Optional configuration, specific to the build backend
Expand Down
7 changes: 2 additions & 5 deletions docs/source_files/pixi_tomls/simple_pixi_build.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,9 @@ version = "0.1.0"
# We are using `pixi-build-python` in order to build a Python package
# --8<-- [start:build-system]
[package.build.backend]
channels = [
"https://prefix.dev/pixi-build-backends",
"https://prefix.dev/conda-forge",
]
channels = ["https://prefix.dev/conda-forge"]
name = "pixi-build-python"
version = "0.1.*"
version = "0.*"
# --8<-- [end:build-system]


Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,4 @@ name = "cpp_math"
version = "0.1.0"

[package.build]
backend = { name = "pixi-build-rattler-build", version = "0.3.*" }
backend = { name = "pixi-build-rattler-build", version = "0.*" }
2 changes: 1 addition & 1 deletion docs/source_files/pixi_workspaces/pixi_build/cpp/pixi.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ name = "cpp_math"
version = "0.1.0"

[package.build]
backend = { name = "pixi-build-cmake", version = "0.3.*" }
backend = { name = "pixi-build-cmake", version = "0.*" }

[package.build.config]
extra-args = ["-DCMAKE_BUILD_TYPE=Release"] # (9)!
Expand Down
2 changes: 1 addition & 1 deletion docs/source_files/pixi_workspaces/pixi_build/dev/pixi.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ preview = ['pixi-build']
# --8<-- [start:package]
[package.build.backend]
name = "pixi-build-rust"
version = "0.4.*"
version = "0.*"

# --8<-- [end:minimal]
[package.build-dependencies]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ version = "0.1.0"
# --8<-- [start:build-system]
[package.build.backend]
name = "pixi-build-python"
version = "0.4.*"
version = "0.*"
# --8<-- [end:build-system]


Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ name = "python_rich"
version = "0.1.0"

[package.build] # (5)!
backend = { name = "pixi-build-python", version = "0.4.*" }
backend = { name = "pixi-build-python", version = "0.*" }

[package.host-dependencies] # (6)!
hatchling = "==1.26.3"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,5 @@
[package.build.backend]
channels = [
"https://prefix.dev/pixi-build-backends",
"https://prefix.dev/conda-forge",
]
channels = ["https://prefix.dev/conda-forge"]
name = "pixi-build-ros"
version = "*"

Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,5 @@
[package.build.backend]
channels = [
"https://prefix.dev/pixi-build-backends",
"https://prefix.dev/conda-forge",
]
channels = ["https://prefix.dev/conda-forge"]
name = "pixi-build-ros"
version = "*"

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name = "cpp_math"
version = "0.1.0"

[package.build]
backend = { name = "pixi-build-cmake", version = "0.3.*" } # (5)!
backend = { name = "pixi-build-cmake", version = "0.*" } # (5)!

[package.host-dependencies]
cmake = "3.20.*"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ name = "python_rich"
version = "0.1.0"

[package.build]
backend = { name = "pixi-build-python", version = "0.4.*" }
backend = { name = "pixi-build-python", version = "0.*" }

[package.host-dependencies]
hatchling = "==1.26.3"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ name = "python_rich"
version = "0.1.0"

[package.build]
backend = { name = "pixi-build-python", version = "0.4.*" }
backend = { name = "pixi-build-python", version = "0.*" }

[package.build.config]
noarch = false
Expand Down
Loading