paleolimbot commented on code in PR #1095:
URL: https://github.com/apache/sedona-db/pull/1095#discussion_r3736040167


##########
python/sedonadb-geopandas/pyproject.toml:
##########
@@ -21,13 +21,18 @@ build-backend = "hatchling.build"
 
 [project]
 name = "sedonadb-geopandas"
-version = "0.4.0"
 description = "GeoPandas-compatible API on top of SedonaDB"
 readme = "README.md"
 requires-python = ">=3.9"
+dynamic = ["version"]
 dependencies = [
-    "sedonadb",
-    "sedonadb-expr",
+    # The `.geo` accessor and `DataFrame.unnest` this package builds on landed 
in
+    # 0.4.0. The floor is an explicit prerelease (`0.4.0a0`) so dev/nightly
+    # builds — which version as `0.4.0aN` and are PEP 440-*less* than `0.4.0` —
+    # satisfy it; a plain `>=0.4.0` would reject the matching nightly wheels
+    # (and break `pip install` of the nightly for users, not just CI).
+    "sedonadb>=0.4.0a0",
+    "sedonadb-expr>=0.4.0a0",

Review Comment:
   Probably `>=0.4.0` is sufficient here since both are now on PyPI



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to