Skip to content

Commit d55daa5

Browse files
committed
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]
1 parent ff07914 commit d55daa5

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/ci-test.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -201,7 +201,9 @@ jobs:
201201
pip install redis
202202
203203
- name: Install python db libraries
204-
run: pip install psycopg2 mysqlclient
204+
run: |
205+
pip install mysqlclient
206+
[ "$PYTHON_VERSION" != "3.13" ] || pip install psycopg2
205207
206208
- name: Install auxiliary packages
207209
run: |

0 commit comments

Comments
 (0)