We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
polars
1 parent 5fdd8eb commit fbb7918Copy full SHA for fbb7918
noxfile.py
@@ -152,12 +152,12 @@ def _testing_requirements(
152
if req.startswith("numpy") and _numpy is not None:
153
print("adding numpy constraint <2")
154
req = f"{req}, {_numpy}"
155
- if (
156
- req == "polars"
157
- or req.startswith("polars ")
158
- and sys.platform == "darwin"
159
- ):
160
- req = "polars-lts-cpu"
+ if req == "polars" or req.startswith("polars "):
+ # TODO(deepyaman): Support latest Polars.
+ if sys.platform == "darwin":
+ req = "polars-lts-cpu < 1.30.0"
+ else:
+ req = "polars < 1.30.0"
161
# for some reason uv will try to install an old version of dask,
162
# have to specifically pin dask[dataframe] to a higher version
163
if (
0 commit comments