Skip to content

Commit

Permalink
Remove orjson
Browse files Browse the repository at this point in the history
  • Loading branch information
grieve54706 committed Jun 19, 2024
1 parent 29ab2ab commit d7f62f0
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 60 deletions.
57 changes: 1 addition & 56 deletions wren-modeling-py/poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 0 additions & 1 deletion wren-modeling-py/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@ python = ">=3.11,<3.12"

[tool.poetry.group.dev.dependencies]
pytest = "8.2.0"
orjson = "3.10.3"

[tool.maturin]
module-name = "wren_core"
Expand Down
5 changes: 2 additions & 3 deletions wren-modeling-py/tests/test_modeling_core.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
import base64

from orjson import orjson
import json

import wren_core

Expand All @@ -20,7 +19,7 @@
],
}

manifest_str = base64.b64encode(orjson.dumps(manifest)).decode("utf-8")
manifest_str = base64.b64encode(json.dumps(manifest).encode("utf-8")).decode("utf-8")


def test_transform_sql():
Expand Down

0 comments on commit d7f62f0

Please sign in to comment.