fix platform virtual package requirements
Browse files
pixi.lock
CHANGED
|
The diff for this file is too large to render.
See raw diff
|
|
|
pixi.toml
CHANGED
|
@@ -1,14 +1,14 @@
|
|
| 1 |
[workspace]
|
| 2 |
authors = ["Uday Phalak <udayphlk@gmail.com>"]
|
| 3 |
-
channels = ["
|
| 4 |
name = "continuous-thought-machines"
|
| 5 |
-
platforms = ["osx-arm64"]
|
| 6 |
version = "0.1.0"
|
| 7 |
|
| 8 |
[dependencies]
|
| 9 |
python = "3.12.*"
|
| 10 |
-
pytorch = "*"
|
| 11 |
-
torchvision = "*"
|
| 12 |
numpy = "<2.0"
|
| 13 |
matplotlib = "*"
|
| 14 |
seaborn = "*"
|
|
|
|
| 1 |
[workspace]
|
| 2 |
authors = ["Uday Phalak <udayphlk@gmail.com>"]
|
| 3 |
+
channels = ["conda-forge", "pytorch"]
|
| 4 |
name = "continuous-thought-machines"
|
| 5 |
+
platforms = ["osx-arm64", "linux-64"]
|
| 6 |
version = "0.1.0"
|
| 7 |
|
| 8 |
[dependencies]
|
| 9 |
python = "3.12.*"
|
| 10 |
+
pytorch = { version = "*", channel = "pytorch" }
|
| 11 |
+
torchvision = { version = "*", channel = "pytorch" }
|
| 12 |
numpy = "<2.0"
|
| 13 |
matplotlib = "*"
|
| 14 |
seaborn = "*"
|