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
@@ -1125,11 +1125,10 @@ impl std::fmt::Display for PubGrubHint {
1125
1125
Self::MissingVersionMetadata{ package, version } => {
1126
1126
write!(
1127
1127
f,
1128
-
"{}{} Metadata for {}=={} could not be found, as the wheel is missing a `METADATA` file",
1128
+
"{}{} Metadata for `{}` could not be found, as the wheel is missing a `METADATA` file",
1129
1129
"hint".bold().cyan(),
1130
1130
":".bold(),
1131
-
package.bold(),
1132
-
version.bold(),
1131
+
format!("{} v{}", package, version).bold(),
1133
1132
)
1134
1133
}
1135
1134
Self::InvalidVersionMetadata{
@@ -1139,11 +1138,10 @@ impl std::fmt::Display for PubGrubHint {
1139
1138
} => {
1140
1139
write!(
1141
1140
f,
1142
-
"{}{} Metadata for {}=={} could not be parsed:\n{}",
1141
+
"{}{} Metadata for `{}` could not be parsed:\n{}",
1143
1142
"hint".bold().cyan(),
1144
1143
":".bold(),
1145
-
package.bold(),
1146
-
version.bold(),
1144
+
format!("{} v{}", package, version).bold(),
1147
1145
textwrap::indent(reason," ")
1148
1146
)
1149
1147
}
@@ -1154,11 +1152,10 @@ impl std::fmt::Display for PubGrubHint {
1154
1152
} => {
1155
1153
write!(
1156
1154
f,
1157
-
"{}{} The structure of {}=={} was invalid:\n{}",
1155
+
"{}{} The structure of `{}` was invalid:\n{}",
1158
1156
"hint".bold().cyan(),
1159
1157
":".bold(),
1160
-
package.bold(),
1161
-
version.bold(),
1158
+
format!("{} v{}", package, version).bold(),
1162
1159
textwrap::indent(reason," ")
1163
1160
)
1164
1161
}
@@ -1169,11 +1166,10 @@ impl std::fmt::Display for PubGrubHint {
1169
1166
} => {
1170
1167
write!(
1171
1168
f,
1172
-
"{}{} Metadata for {}=={} was inconsistent:\n{}",
1169
+
"{}{} Metadata for `{}` was inconsistent:\n{}",
1173
1170
"hint".bold().cyan(),
1174
1171
":".bold(),
1175
-
package.bold(),
1176
-
version.bold(),
1172
+
format!("{} v{}", package, version).bold(),
1177
1173
textwrap::indent(reason," ")
1178
1174
)
1179
1175
}
@@ -1220,11 +1216,10 @@ impl std::fmt::Display for PubGrubHint {
1220
1216
} => {
1221
1217
write!(
1222
1218
f,
1223
-
"{}{} The source distribution for {}=={} does not include static metadata. Generating metadata for this package requires Python {}, but Python {} is installed.",
1219
+
"{}{} The source distribution for `{}` does not include static metadata. Generating metadata for this package requires Python {}, but Python {} is installed.",
let requirements_in = context.temp_dir.child("requirements.in");
13647
+
requirements_in.write_str("open3d")?;
13648
+
13649
+
uv_snapshot!(context
13650
+
.pip_compile()
13651
+
.arg("--python-platform")
13652
+
.arg("linux")
13653
+
.arg("requirements.in"), @r###"
13654
+
success: false
13655
+
exit_code: 1
13656
+
----- stdout -----
13657
+
13658
+
----- stderr -----
13659
+
× No solution found when resolving dependencies:
13660
+
╰─▶ Because only the following versions of open3d are available:
13661
+
open3d==0.8.0.0
13662
+
open3d==0.9.0.0
13663
+
open3d==0.10.0.0
13664
+
open3d==0.10.0.1
13665
+
open3d==0.11.0
13666
+
open3d==0.11.1
13667
+
open3d==0.11.2
13668
+
open3d==0.12.0
13669
+
open3d==0.13.0
13670
+
open3d==0.14.1
13671
+
open3d==0.15.1
13672
+
open3d==0.15.2
13673
+
open3d==0.16.0
13674
+
open3d==0.16.1
13675
+
open3d==0.17.0
13676
+
open3d==0.18.0
13677
+
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.
13678
+
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.
0 commit comments