From dde3c1346dcd1de24587664479a1ffb024bb74ee Mon Sep 17 00:00:00 2001 From: Ben Deane Date: Fri, 4 Sep 2026 09:39:54 -0600 Subject: [PATCH] :art: Add git URL for python deps for pip Problem: - `uv` dependency sources are listed in the `pyproject.toml` but we shouldn't prevent `pip` usage if it's easy. Solution: - Add the github source for CICD so that `pip` can install it. --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index cb3347d..0f8f365 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -3,7 +3,7 @@ name = "intel-cpp-std-extensions" version = "0.0.1" requires-python = ">=3.12" dependencies = [ - "intel-cicd-repo-infrastructure" + "intel-cicd-repo-infrastructure@git+https://github.com/intel/cicd-repo-infrastructure@dev" ] license = "BSL-1.0"