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

Bump psycopg2 to 2.9.9 to possibly avoid crash on Python 3.12 #46431

Merged
merged 1 commit into from
Feb 4, 2025
Merged
Show file tree
Hide file tree
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
4 changes: 2 additions & 2 deletions dev/breeze/tests/test_packages.py
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,7 @@ def test_get_old_documentation_package_path():
"apache-airflow-providers-common-sql>=1.20.0b0",
"apache-airflow>=2.9.0b0",
"asyncpg>=0.30.0",
"psycopg2-binary>=2.9.7",
"psycopg2-binary>=2.9.9",
""",
id="beta0 suffix postgres",
),
Expand All @@ -225,7 +225,7 @@ def test_get_old_documentation_package_path():
"apache-airflow-providers-common-sql>=1.20.0",
"apache-airflow>=2.9.0",
"asyncpg>=0.30.0",
"psycopg2-binary>=2.9.7",
"psycopg2-binary>=2.9.9",
""",
id="No suffix postgres",
),
Expand Down
2 changes: 1 addition & 1 deletion generated/provider_dependencies.json
Original file line number Diff line number Diff line change
Expand Up @@ -1084,7 +1084,7 @@
"apache-airflow-providers-common-sql>=1.20.0",
"apache-airflow>=2.9.0",
"asyncpg>=0.30.0",
"psycopg2-binary>=2.9.7"
"psycopg2-binary>=2.9.9"
],
"devel-deps": [],
"plugins": [],
Expand Down
2 changes: 1 addition & 1 deletion providers/postgres/README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ PIP package Version required
======================================= ==================
``apache-airflow`` ``>=2.9.0``
``apache-airflow-providers-common-sql`` ``>=1.20.0``
``psycopg2-binary`` ``>=2.9.7``
``psycopg2-binary`` ``>=2.9.9``
``asyncpg`` ``>=0.30.0``
======================================= ==================

Expand Down
2 changes: 1 addition & 1 deletion providers/postgres/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ requires-python = "~=3.9"
dependencies = [
"apache-airflow>=2.9.0",
"apache-airflow-providers-common-sql>=1.20.0",
"psycopg2-binary>=2.9.7",
"psycopg2-binary>=2.9.9",
"asyncpg>=0.30.0",
]

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ def get_provider_info():
"dependencies": [
"apache-airflow>=2.9.0",
"apache-airflow-providers-common-sql>=1.20.0",
"psycopg2-binary>=2.9.7",
"psycopg2-binary>=2.9.9",
"asyncpg>=0.30.0",
],
"optional-dependencies": {
Expand Down
Loading