From f3003c69f0eb8c409aecbc35997700c10d6198db Mon Sep 17 00:00:00 2001 From: Rubel Date: Fri, 13 Sep 2024 12:14:08 +0200 Subject: [PATCH] Reorder the requirement generation statement --- .github/workflows/nomad-requirements.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/nomad-requirements.yml b/.github/workflows/nomad-requirements.yml index c11ec611c..da9645349 100644 --- a/.github/workflows/nomad-requirements.yml +++ b/.github/workflows/nomad-requirements.yml @@ -45,8 +45,8 @@ jobs: - name: Generate (dev-)requirements.txt from modified pyproject.toml working-directory: ./nomad run: | - uv pip compile --universal -p 3.11 --annotation-style=line --extra=dev --extra=infrastructure --extra=parsing --output-file=requirements-dev.txt requirements.txt pyproject.toml uv pip compile --universal -p 3.11 --annotation-style=line --extra=infrastructure --extra=parsing --output-file=requirements.txt pyproject.toml + uv pip compile --universal -p 3.11 --annotation-style=line --extra=dev --extra=infrastructure --extra=parsing --output-file=requirements-dev.txt requirements.txt pyproject.toml uv pip compile --universal -p 3.11 --annotation-style=line --output-file=requirements-plugins.txt --unsafe-package nomad-lab -c requirements-dev.txt default_plugins.txt - name: Install NOMAD dependencies with pynxtools from current branch