File: 0003-Fix-pip-not-allowing-install-outside-a-virtual-env.patch

package info (click to toggle)
vim-youcompleteme 0%2B20240827%2Bgitb6e8c64%2Bds-4
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 3,436 kB
  • sloc: python: 10,914; sh: 204; cpp: 141; makefile: 26; f90: 5; xml: 1
file content (25 lines) | stat: -rw-r--r-- 828 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
From 10b274ceb9fc1850665c181fd862e84c4a8a089b Mon Sep 17 00:00:00 2001
From: Boris Staletic <boris.staletic@protonmail.com>
Date: Thu, 29 Aug 2024 08:25:37 +0200
Subject: [PATCH] Fix pip not allowing install outside a virtual env

---
 .github/workflows/ci.yml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 88cf12c2..834ac7a2 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -66,7 +66,7 @@ jobs:
         submodules: recursive
         fetch-depth: 0
     - name: Install dependencies
-      run: sudo -H pip3 install -r python/test_requirements.txt
+      run: sudo -H pip3 install --break-system-packages -r python/test_requirements.txt
     - name: Install Java
       uses: actions/setup-java@v4
       with:
-- 
2.45.2