-
Notifications
You must be signed in to change notification settings - Fork 60
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
Fix macos14 tests on 1.5 #954
Conversation
Judging from this manual CI run, we need to use brackets around these.... https://github.com/dbt-labs/dbt-redshift/actions/runs/11927014503 Are PR checks still using the already-checked-in version? If so, this would explain for why they failed here but passed in the linked CI run |
const defaultPythonVersion = "3.9"; | ||
const supportedPythonVersions = ["3.9", "3.10", "3.11"]; | ||
const defaultPythonVersion = "3.10"; | ||
const supportedPythonVersions = ["3.9", "3.10", "3.11", "3.12"]; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We don't support 3.12 on this version.
2dae269
to
b2aa24a
Compare
resolves #
docs dbt-labs/docs.getdbt.com/#
Problem
1.4 tests will fail on macos until we fix this.
Solution
Go to a version with a psycopg2 binary.
Checklist