From 37124c350e54288d201a9007fc0d7d9a8391c1ba Mon Sep 17 00:00:00 2001 From: Matthew Evans <7916000+ml-evs@users.noreply.github.com> Date: Tue, 10 Oct 2023 16:51:16 +0100 Subject: [PATCH] Use the qtoolkit and jobflow PyPI packages, add direct pydantic dep (#31) * Use the qtoolkit and jobflow PyPI package * Add direct dependency on pydantic --- pyproject.toml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 981131c8..71fb42ab 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -26,11 +26,12 @@ classifiers = [ ] requires-python = ">=3.8" dependencies =[ - "jobflow[strict] @ git+ssh://git@github.com/materialsproject/jobflow", + "jobflow[strict]", + "pydantic<2", "fireworks", "fabric", "tomlkit", - "qtoolkit @ git+ssh://git@github.com/matgenix/qtoolkit", # TODO: Should be updated here when released + "qtoolkit", "typer", "rich", "psutil",