Skip to content

Commit 84be03b

Browse files
committed
issue2551339 - psycopg2 on 3.13 github runner crashes on import
Promote 3.13 to a non test build. If it fails, fail the build. Install psycopg2 for all python versions. xapian is still broken.
1 parent 4d10e35 commit 84be03b

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

.github/workflows/ci-test.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -52,13 +52,14 @@ jobs:
5252
# Run in all these versions of Python
5353
python-version:
5454
# - "2.7"
55-
- "3.12"
56-
# - 3.6 run via include on ubunto 20.04
55+
- "3.13"
56+
# - 3.6 run via include on ubuntu 20.04
5757
# - "3.7"
5858
- "3.8"
5959
# - "3.9"
6060
- "3.10"
6161
- "3.11"
62+
- "3.12"
6263

6364
# use for multiple os or ubuntu versions
6465
#os: [ubuntu-latest, macos-latest, windows-latest]
@@ -72,9 +73,9 @@ jobs:
7273
# example: if 3.13 fails the jobs still succeeds
7374
# allow-prereleases in setup-python allows alpha/beta
7475
# releases to run
75-
- python-version: 3.13
76-
os: ubuntu-22.04
77-
experimental: true
76+
#- python-version: 3.13
77+
# os: ubuntu-22.04
78+
# experimental: true
7879

7980
# 3.6 not available on new 22.04 runners, so run on 20.04 ubuntu
8081
- python-version: 3.6
@@ -203,8 +204,7 @@ jobs:
203204
- name: Install python db libraries
204205
run: |
205206
pip install mysqlclient
206-
if [[ "$PYTHON_VERSION" != "3.14" ]]; then
207-
pip install psycopg2; fi
207+
pip install psycopg2
208208
209209
- name: Install auxiliary packages
210210
run: |

0 commit comments

Comments
 (0)