From aff98ce1929f479f62e96c3abf50d6a5bcdab51f Mon Sep 17 00:00:00 2001 From: Tully Foote Date: Wed, 10 Apr 2024 13:57:34 -0700 Subject: [PATCH] fixup to validate working for rolling I think that this will break older that 3.12 --- .github/workflows/test.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 1ebf462..7adbd8e 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -17,14 +17,14 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v4 - name: Install pip run: apt update && apt install -y python3-pip - name: Install pip dependencies run: | - python3 -m pip install --user --upgrade --upgrade-strategy eager .[test] + python3 -m pip install --break-system-packages --upgrade --upgrade-strategy eager .[test] python3 -m pip freeze - name: Install apt dependencies