Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions binder/environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,15 @@ channels:
dependencies:
- python =3.12
- click =8.1.8
- pydantic =2.13.4
- hatchling =1.28.0
- pydantic =2.12.5
- hatchling =1.31.0
- hatch-vcs =0.5.0
- jobflow =0.3.1
- executorlib =1.7.4
- pyiron_base =0.15.15
- pyiron_workflow =0.15.5
- executorlib =1.10.1
- pyiron_base =0.15.16
- pyiron_workflow =0.18.0
- pygraphviz =1.14
- aiida-workgraph =0.8.1
- conda_subprocess =0.0.12
- networkx =3.4.2
- networkx =3.6.1
- cwltool =3.2.20260413085819
4 changes: 2 additions & 2 deletions example_workflows/arithmetic/pyiron_workflow.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
"metadata": {},
"outputs": [],
"source": [
"from pyiron_workflow import Workflow, to_function_node"
"from pyiron_workflow._legacy import Workflow, to_function_node"
]
},
{
Expand Down Expand Up @@ -913,4 +913,4 @@
},
"nbformat": 4,
"nbformat_minor": 5
}
}
4 changes: 2 additions & 2 deletions example_workflows/nfdi/pyiron_workflow.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@
{
"id": "2dced28725813fc1",
"cell_type": "code",
"source": "from pyiron_workflow import Workflow, to_function_node\n\nfrom python_workflow_definition.pyiron_workflow import write_workflow_json",
"source": "from pyiron_workflow._legacy import Workflow, to_function_node\n\nfrom python_workflow_definition.pyiron_workflow import write_workflow_json",
"metadata": {
"trusted": true
},
Expand Down Expand Up @@ -425,4 +425,4 @@
"execution_count": null
}
]
}
}
6 changes: 3 additions & 3 deletions example_workflows/quantum_espresso/pyiron_workflow.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@
"source": [
"from inspect import isfunction\n",
"import numpy as np\n",
"from pyiron_workflow import Workflow, to_function_node, as_function_node\n",
"from pyiron_workflow.api import inputs_to_dict\n",
"from pyiron_workflow._legacy import Workflow, to_function_node, as_function_node\n",
"from pyiron_workflow._legacy.api import inputs_to_dict\n",
"from python_workflow_definition.pyiron_workflow import write_workflow_json"
]
},
Expand Down Expand Up @@ -6039,4 +6039,4 @@
},
"nbformat": 4,
"nbformat_minor": 5
}
}
6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,13 +28,13 @@ jobflow = [
"jobflow>=0.1.18,<=0.3.1",
]
pyiron = [
"pyiron_base>=0.11.10,<=0.15.12",
"pyiron_base>=0.11.10,<=0.15.16",
]
pyiron_workflow = [
"pyiron_workflow>=0.13.0,<=0.15.5",
"pyiron_workflow>=0.13.0,<=0.18.0",
]
executorlib = [
"executorlib>=1.7.4,<=1.9.1",
"executorlib>=1.7.4,<=1.10.1",
]
plot = [
"pygraphviz>=1.10,<=1.14",
Expand Down
4 changes: 2 additions & 2 deletions src/python_workflow_definition/pyiron_workflow.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
from typing import Any

import numpy as np
from pyiron_workflow import Workflow, function_node
from pyiron_workflow.api import Function
from pyiron_workflow._legacy import Workflow, function_node
from pyiron_workflow._legacy.api import Function

from python_workflow_definition.models import PythonWorkflowDefinitionWorkflow
from python_workflow_definition.shared import (
Expand Down
2 changes: 1 addition & 1 deletion tests/test_pyiron_workflow.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
import os
import sys
import unittest
from pyiron_workflow import Workflow, to_function_node
from pyiron_workflow._legacy import Workflow, to_function_node
from python_workflow_definition.pyiron_workflow import load_workflow_json, write_workflow_json

function_str = """
Expand Down
Loading