From e53fa19eb171534aca7debab8cf1cb06efc4416d Mon Sep 17 00:00:00 2001 From: Janosh Riebesell Date: Thu, 29 Feb 2024 13:22:02 +0100 Subject: [PATCH] fix Failed to parse `git+https://gitlab.com/ase/ase` Caused by: URL requirement must be preceded by a package name. Add the name of the package before the URL (e.g., `package_name @ https://...`). --- .github/workflows/test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 6968177b..d3a2cff7 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -41,7 +41,7 @@ jobs: uv pip install cython --system # install ase from main branch until FrechetCellFilter is released # TODO remove uv pip install git+https://gitlab.com/ase/ase - uv pip install git+https://gitlab.com/ase/ase --system + uv pip install ase git+https://gitlab.com/ase/ase --system python setup.py build_ext --inplace uv pip install -e .[test] --system