diff .github/workflows/ci-test.yml @ 7896:dc3bf565794a

test(ci): disable psycopg2 install for 3.13 See if we can get past psycopg2 import issue. https://issues.roundup-tracker.org/issue2551339 [skip travis]
author John Rouillard <rouilj@ieee.org>
date Sat, 20 Apr 2024 15:29:06 -0400
parents e13de119d070
children ed3042ff06a6
line wrap: on
line diff
--- a/.github/workflows/ci-test.yml	Sat Apr 20 14:45:21 2024 -0400
+++ b/.github/workflows/ci-test.yml	Sat Apr 20 15:29:06 2024 -0400
@@ -201,7 +201,9 @@
           pip install redis
 
       - name: Install python db libraries
-        run: pip install psycopg2 mysqlclient
+        run: |
+          pip install mysqlclient
+          [ "$PYTHON_VERSION" != "3.13" ] || pip install psycopg2
 
       - name: Install auxiliary packages
         run: |

Roundup Issue Tracker: http://roundup-tracker.org/