Skip to content

Commit

Permalink
(probably) fix windows integration tests
Browse files Browse the repository at this point in the history
  • Loading branch information
sfc-gh-pczajka committed Mar 21, 2024
1 parent 39a639d commit d47c0dd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/snowflake/cli/plugins/snowpark/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ def from_wheel(cls, wheel_path: Path):
return None

root = zipfile.Path(whl)
metadata = (root / metadata_path[0]).read_text()
metadata = (root / metadata_path[0]).read_text(encoding="utf-8")

dep_keyword = "Requires-Dist:"
dependencies = [
Expand Down

0 comments on commit d47c0dd

Please sign in to comment.