Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Test macos-14 on Python 3.10 instead of Python 3.9 due to missing psycopg2-binary #942

Merged
merged 1 commit into from
Nov 6, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 6 additions & 9 deletions .github/workflows/integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -90,17 +90,14 @@ jobs:
fail-fast: false
max-parallel: 3
matrix:
os: [ubuntu-22.04, macos-14, windows-2022]
python-version: ["3.9"]
os: ubuntu-22.04
python-version: ["3.9", "3.10", "3.11", "3.12"]
include:
- os: ubuntu-22.04
python-version: "3.9"
- os: ubuntu-22.04
# psycopg2-binary doesn't have a precompiled wheel for python 3.9 for macos-14
- os: macos-14
python-version: "3.10"
- os: ubuntu-22.04
python-version: "3.11"
- os: ubuntu-22.04
python-version: "3.12"
- os: windows-2022
python-version: "3.9"

env:
TOXENV: integration-redshift
Expand Down
Loading