Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: Finish implementation #1

Merged
merged 4 commits into from
Nov 22, 2024
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
1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -46,3 +46,4 @@ reqwest = { version = "0.12.9", default-features = false, features = [
"http2",
"macos-system-configuration",
] }
tempfile = "3.13.0"
1,238 changes: 1,238 additions & 0 deletions examples/already-installed-different-version/pixi.lock

Large diffs are not rendered by default.

9 changes: 9 additions & 0 deletions examples/already-installed-different-version/pixi.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
[project]
channels = ["conda-forge"]
name = "already-installed"
platforms = ["osx-arm64", "osx-64", "linux-64", "win-64"]

[dependencies]
python = "3.13.*"
typing-extensions = "*"
pydantic-core = "2.27.0"
1,242 changes: 1,242 additions & 0 deletions examples/already-installed/pixi.lock

Large diffs are not rendered by default.

9 changes: 9 additions & 0 deletions examples/already-installed/pixi.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
[project]
channels = ["conda-forge"]
name = "already-installed"
platforms = ["osx-arm64", "osx-64", "linux-64", "win-64"]

[dependencies]
python = "3.13.*"
typing-extensions = "*"
pydantic-core = "2.26.0"
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
1 change: 1 addition & 0 deletions examples/simple-example/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
.pixi
1,160 changes: 1,160 additions & 0 deletions examples/simple-example/pixi.lock

Large diffs are not rendered by default.

8 changes: 8 additions & 0 deletions examples/simple-example/pixi.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
[project]
channels = ["conda-forge"]
name = "simple-example"
platforms = ["osx-arm64", "osx-64", "linux-64", "win-64"]

[dependencies]
python = "3.13.*"
typing-extensions = "*"
239 changes: 239 additions & 0 deletions pixi.lock

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

2 changes: 2 additions & 0 deletions pixi.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@ test = "cargo test"

[dependencies]
rust = "1.81.0"
openssl = "*"
pkg-config = "*"

[target.linux.dependencies]
compilers = ">=1.7.0"
Expand Down
Loading