AnacondaRecipes / repodata-hotfixes

Changes to package metadata to fix behavior
BSD 3-Clause "New" or "Revised" License
14 stars 20 forks source link

Fix error in dask dependency specification #112

Closed chenghlee closed 3 years ago

chenghlee commented 3 years ago

Space between operator and version was causing conda to fail with Invalid spec: >=. Fixes AnacondaRecipes/dask-core-feedstock#3.

Resulting repodata.json diff:

--- a/main/noarch/reference_repodata.json
+++ b/main/noarch/repodata-patched.json
@@ -15743,7 +15743,7 @@
         "python >=3.7",
         "cloudpickle >=1.1.1",
         "fsspec >=0.6.0",
-        "partd >= 0.3.10",
+        "partd >=0.3.10",
         "pyyaml",
         "toolz >=0.8.2"
       ],
@@ -79198,7 +79198,7 @@
         "python >=3.7",
         "cloudpickle >=1.1.1",
         "fsspec >=0.6.0",
-        "partd >= 0.3.10",
+        "partd >=0.3.10",
         "pyyaml",
         "toolz >=0.8.2"
       ],
jamesp commented 3 years ago

Many thanks for the quick turnaround all, much appreciated