From 861b7d0c1330d2ea5c2e47cbf33b8f67caa24187 Mon Sep 17 00:00:00 2001 From: Liam Huber Date: Tue, 23 Jul 2024 16:26:03 -0700 Subject: [PATCH] [patch] Bump pyironverse (#385) * Bump dependencies * Revert pympipool max_* argument syntax back to concurrent.futures standard * [dependabot skip] Update env file --------- Co-authored-by: pyiron-runner --- .binder/environment.yml | 10 +++++----- .ci_support/environment.yml | 10 +++++----- docs/environment.yml | 10 +++++----- notebooks/deepdive.ipynb | 5 +---- pyproject.toml | 10 +++++----- 5 files changed, 21 insertions(+), 24 deletions(-) diff --git a/.binder/environment.yml b/.binder/environment.yml index 0e4becf3..5f02e6b1 100644 --- a/.binder/environment.yml +++ b/.binder/environment.yml @@ -6,13 +6,13 @@ dependencies: - bidict =0.23.1 - cloudpickle =3.0.0 - graphviz =9.0.0 -- h5io =0.2.3 -- h5io_browser =0.0.15 +- h5io =0.2.4 +- h5io_browser =0.0.16 - pandas =2.2.2 -- pyiron_base =0.9.4 +- pyiron_base =0.9.10 - pyiron_contrib =0.1.17 -- pyiron_snippets =0.1.2 -- pympipool =0.8.4 +- pyiron_snippets =0.1.3 +- pympipool =0.9.1 - python-graphviz =0.20.3 - toposort =1.10 - typeguard =4.3.0 diff --git a/.ci_support/environment.yml b/.ci_support/environment.yml index 0e4becf3..5f02e6b1 100644 --- a/.ci_support/environment.yml +++ b/.ci_support/environment.yml @@ -6,13 +6,13 @@ dependencies: - bidict =0.23.1 - cloudpickle =3.0.0 - graphviz =9.0.0 -- h5io =0.2.3 -- h5io_browser =0.0.15 +- h5io =0.2.4 +- h5io_browser =0.0.16 - pandas =2.2.2 -- pyiron_base =0.9.4 +- pyiron_base =0.9.10 - pyiron_contrib =0.1.17 -- pyiron_snippets =0.1.2 -- pympipool =0.8.4 +- pyiron_snippets =0.1.3 +- pympipool =0.9.1 - python-graphviz =0.20.3 - toposort =1.10 - typeguard =4.3.0 diff --git a/docs/environment.yml b/docs/environment.yml index 241eb993..8c08ce57 100644 --- a/docs/environment.yml +++ b/docs/environment.yml @@ -12,13 +12,13 @@ dependencies: - bidict =0.23.1 - cloudpickle =3.0.0 - graphviz =9.0.0 -- h5io =0.2.3 -- h5io_browser =0.0.15 +- h5io =0.2.4 +- h5io_browser =0.0.16 - pandas =2.2.2 -- pyiron_base =0.9.4 +- pyiron_base =0.9.10 - pyiron_contrib =0.1.17 -- pyiron_snippets =0.1.2 -- pympipool =0.8.4 +- pyiron_snippets =0.1.3 +- pympipool =0.9.1 - python-graphviz =0.20.3 - toposort =1.10 - typeguard =4.3.0 diff --git a/notebooks/deepdive.ipynb b/notebooks/deepdive.ipynb index e075dde2..3ee36886 100644 --- a/notebooks/deepdive.ipynb +++ b/notebooks/deepdive.ipynb @@ -4093,10 +4093,7 @@ "wf.starting_nodes = [wf.a, wf.b, wf.c]\n", "\n", "\n", - "# with wf.create.Executor(max_workers=3) as executor:\n", - "# pympipool.Executor does not conform to the concurrent.futures.Executor signature\n", - "# use max_cores instead of max_workers\n", - "with wf.create.Executor(max_cores=3) as executor:\n", + "with wf.create.Executor(max_workers=3) as executor:\n", " wf.a.executor = executor\n", " wf.b.executor = executor\n", " wf.c.executor = executor\n", diff --git a/pyproject.toml b/pyproject.toml index 360dc108..f9c541d5 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -36,13 +36,13 @@ dependencies = [ "bidict==0.23.1", "cloudpickle==3.0.0", "graphviz==0.20.3", - "h5io==0.2.3", - "h5io_browser==0.0.15", + "h5io==0.2.4", + "h5io_browser==0.0.16", "pandas==2.2.2", - "pyiron_base==0.9.4", + "pyiron_base==0.9.10", "pyiron_contrib==0.1.17", - "pyiron_snippets==0.1.2", - "pympipool==0.8.4", + "pyiron_snippets==0.1.3", + "pympipool==0.9.1", "toposort==1.10", "typeguard==4.3.0", ]