Skip to content

Commit 9736b2e

Browse files
authored
Uptick modin to 0.16 (#1659)
* Uptick to modin 0.16 and widen pyarrow range * Minor - Fix to regression in pandas 1.15
1 parent a826503 commit 9736b2e

File tree

3 files changed

+31
-108
lines changed

3 files changed

+31
-108
lines changed

poetry.lock

Lines changed: 28 additions & 105 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ boto3 = "^1.24.11"
3030
botocore = "^1.27.11"
3131
pandas = "^1.4.2"
3232
numpy = "^1.22.4"
33-
pyarrow = "^6.0.0"
33+
pyarrow = ">=6.0.0, <8.1.0"
3434
redshift-connector = "~2.0.889"
3535
pymysql = "^1.0.0"
3636
pg8000 = "^1.29.0"
@@ -43,7 +43,7 @@ gremlinpython = "^3.5.2"
4343
backoff = ">=2.0.0,<3.0.0"
4444
SPARQLWrapper = { version = "^2.0.0", optional = true }
4545
pyodbc = { version = "~4.0.32", optional = true }
46-
modin = { version = "^0.14.1", optional = true }
46+
modin = { version = "^0.16.0", optional = true }
4747
ray = { version = "^2.0.0", extras = ["default", "data"], optional = true}
4848
psutil = { version = "^5.9.0", optional = true }
4949
tqdm = { version = "^4.64.0", optional = true }

tests/_utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -277,7 +277,7 @@ def ensure_data_types(df, has_list=False):
277277
assert str(df["__index_level_0__"].dtype) == "Int64"
278278
assert str(df["par0"].dtype) in ("Int64", "category")
279279
assert str(df["par1"].dtype) in ("string", "category")
280-
row = df[df["iint16"] == 1]
280+
row = df.query("iint16 == 1")
281281
if not row.empty:
282282
row = row.iloc[0]
283283
assert str(type(row["decimal"]).__name__) == "Decimal"

0 commit comments

Comments
 (0)