Skip to content

Commit

Permalink
chore(fal): remove unused tomli req (#392)
Browse files Browse the repository at this point in the history
Forgot to commit it #383
  • Loading branch information
efiop authored Jan 21, 2025
1 parent fa2ab77 commit f1ee2a5
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 0 additions & 1 deletion projects/fal/src/fal/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,6 @@
"uvicorn",
"starlette_exporter",
"structlog",
"tomli",
]


Expand Down
4 changes: 3 additions & 1 deletion projects/fal/tests/test_stability.py
Original file line number Diff line number Diff line change
Expand Up @@ -595,7 +595,9 @@ def test_fal_storage(isolated_client, repo_type, url_prefix):
assert file.url.startswith(url_prefix)
assert file.as_bytes().decode().endswith("local")

@isolated_client(serve=True, requirements=[f"pydantic=={pydantic_version}"])
@isolated_client(
serve=True, requirements=[f"pydantic=={pydantic_version}", "tomli"]
)
def hello_file():
# Run in the isolated environment
return File.from_bytes(
Expand Down

0 comments on commit f1ee2a5

Please sign in to comment.