You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
let requirements_in = context.temp_dir.child("requirements.in");
13635
+
requirements_in.write_str("open3d")?;
13636
+
13637
+
uv_snapshot!(context
13638
+
.pip_compile()
13639
+
.arg("--python-platform")
13640
+
.arg("linux")
13641
+
.arg("requirements.in"), @r###"
13642
+
success: false
13643
+
exit_code: 1
13644
+
----- stdout -----
13645
+
----- stderr -----
13646
+
× No solution found when resolving dependencies:
13647
+
╰─▶ Because only the following versions of open3d are available:
13648
+
open3d==0.8.0.0
13649
+
open3d==0.9.0.0
13650
+
open3d==0.10.0.0
13651
+
open3d==0.10.0.1
13652
+
open3d==0.11.0
13653
+
open3d==0.11.1
13654
+
open3d==0.11.2
13655
+
open3d==0.12.0
13656
+
open3d==0.13.0
13657
+
open3d==0.14.1
13658
+
open3d==0.15.1
13659
+
open3d==0.15.2
13660
+
open3d==0.16.0
13661
+
open3d==0.16.1
13662
+
open3d==0.17.0
13663
+
open3d==0.18.0
13664
+
and open3d<=0.15.2 has no wheels with a matching Python ABI tag, we can conclude that open3d<0.9.0.0 cannot be used.
13665
+
And because open3d>=0.16.0 has no wheels with a matching platform tag and you require open3d, we can conclude that your requirements are unsatisfiable.
13666
+
"###);
13667
+
13668
+
Ok(())
13669
+
}
13670
+
13630
13671
/// Treat `sys_platform` and `sys.platform` as equivalent markers in the marker algebra.
0 commit comments