Skip to content

Commit

Permalink
test(ci): disable psycopg2 install for 3.13
Browse files Browse the repository at this point in the history
See if we can get past psycopg2 import issue.

https://issues.roundup-tracker.org/issue2551339

[skip travis]
  • Loading branch information
rouilj committed Apr 20, 2024
1 parent ff07914 commit d55daa5
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/ci-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,9 @@ jobs:
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: |
Expand Down

0 comments on commit d55daa5

Please sign in to comment.