Skip to content

Commit

Permalink
chore: bump non-prefect deps
Browse files Browse the repository at this point in the history
  • Loading branch information
tekumara committed Dec 2, 2023
1 parent 7ff4f29 commit 00fb199
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 3 deletions.
14 changes: 14 additions & 0 deletions flows/run.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
import asyncio

from prefect.client.schemas.objects import FlowRun
from prefect.deployments.deployments import run_deployment
from prefect.server.schemas.states import StateType


async def main():
deployments = ["param/yaml", "retry/yaml", "dask-kubes/python", "parent/python"]

flow_runs: list[FlowRun] = await asyncio.gather(*[run_deployment(name=d) for d in deployments])

for f in flow_runs:
assert f.state_type == StateType.COMPLETED
6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ dependencies = [
"prefect-aws==0.4.5",
"prefect-shell==0.2.2",
# to read/write flows in s3 remote storage
"s3fs~=2023.6.0",
"s3fs~=2023.10.0",
]

[project.optional-dependencies]
Expand All @@ -24,8 +24,8 @@ dev = [
]
dask = [
# bokeh is needed for the dask dashboard
"bokeh==2.4.3",
"dask_kubernetes==2023.6.1",
"bokeh",
"dask_kubernetes==2023.10.0",
"prefect-dask==0.2.6",
]
ray = ["prefect-ray==0.3.2", "ray==2.5.1"]
Expand Down

0 comments on commit 00fb199

Please sign in to comment.