Skip to content

Commit

Permalink
Remove pytorch-cpu as it is not available on windows
Browse files Browse the repository at this point in the history
Signed-off-by: Julien Jerphanion <git@jjerphan.xyz>
  • Loading branch information
jjerphan committed Sep 19, 2024
1 parent bba3c3a commit 01c5e68
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 5 deletions.
1 change: 0 additions & 1 deletion micromamba/tests/env-extra-white-space.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,5 @@ channels:
dependencies:
- python > 3.11
- numpy < 2.0
- pytorch-cpu = 1.13.0
- scipy >= 1.5.0, < 2.0.0
- scikit-learn >1.0.0
4 changes: 0 additions & 4 deletions micromamba/tests/test_env.py
Original file line number Diff line number Diff line change
Expand Up @@ -399,10 +399,6 @@ def test_env_create_whitespace(tmp_home, tmp_root_prefix, tmp_path):
package["name"] == "numpy" and Version(package["version"]) < Version("2.0")
for package in packages
)
assert any(
package["name"] == "pytorch-cpu" and Version(package["version"]) == Version("1.13.0")
for package in packages
)
assert any(
package["name"] == "scipy"
and Version("1.5.0") <= Version(package["version"]) < Version("2.0.0")
Expand Down

0 comments on commit 01c5e68

Please sign in to comment.