From bccd36aaca78ba4be0aac0aad94736c3d92477cb Mon Sep 17 00:00:00 2001 From: Matthew Evans Date: Fri, 6 Oct 2023 22:24:19 +0100 Subject: [PATCH 1/2] Use the qtoolkit and jobflow PyPI package --- pyproject.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 981131c8..f739dbce 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -26,11 +26,11 @@ classifiers = [ ] requires-python = ">=3.8" dependencies =[ - "jobflow[strict] @ git+ssh://git@github.com/materialsproject/jobflow", + "jobflow[strict]<=0.1.13", "fireworks", "fabric", "tomlkit", - "qtoolkit @ git+ssh://git@github.com/matgenix/qtoolkit", # TODO: Should be updated here when released + "qtoolkit", "typer", "rich", "psutil", From 60cf29ea5fdff12f69c53597824944918e329e63 Mon Sep 17 00:00:00 2001 From: Matthew Evans Date: Fri, 6 Oct 2023 22:44:22 +0100 Subject: [PATCH 2/2] Add direct dependency on pydantic --- pyproject.toml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index f739dbce..71fb42ab 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -26,7 +26,8 @@ classifiers = [ ] requires-python = ">=3.8" dependencies =[ - "jobflow[strict]<=0.1.13", + "jobflow[strict]", + "pydantic<2", "fireworks", "fabric", "tomlkit",