Skip to content

Commit

Permalink
revisit pypy sypport in psycopg 3
Browse files Browse the repository at this point in the history
  • Loading branch information
fizyk committed Feb 7, 2025
1 parent cf5462b commit 08b12b1
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
5 changes: 4 additions & 1 deletion .github/workflows/single-postgres.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on:
inputs:
python-versions:
description: 'Supported python versions'
default: '["3.9", "3.10", "3.11", "3.12", "3.13"]'
default: '["3.9", "3.10", "3.11", "3.12", "3.13", "pypy-3.10"]'
required: false
type: string
postgresql:
Expand Down Expand Up @@ -49,6 +49,9 @@ jobs:
if: ${{ inputs.os == 'ubuntu-latest' }}
run: |
sudo locale-gen de_DE.UTF-8
- name: install libpq
if: ${{ contains(inputs.python-versions, 'pypy') }}
run: sudo apt install libpq5
- name: Run test
uses: fizyk/actions-reuse/.github/actions/[email protected]
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
uses: ./.github/workflows/single-postgres.yml
with:
postgresql: 16
python-versions: '["3.10", "3.11", "3.12", "3.13"]'
python-versions: '["3.10", "3.11", "3.12", "3.13", "pypy-3.10"]'
postgresql_15:
needs: [postgresql_16]
uses: ./.github/workflows/single-postgres.yml
Expand Down

0 comments on commit 08b12b1

Please sign in to comment.