Skip to content

Commit 13481d0

Browse files
committed
fixup! fixup! fixup! fixup! Migrate to connexion 2.15
1 parent a7dd3d9 commit 13481d0

File tree

12 files changed

+112
-111
lines changed

12 files changed

+112
-111
lines changed

RELEASE_NOTES.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1180,7 +1180,7 @@ Bug Fixes
11801180

11811181
Miscellaneous
11821182
"""""""""""""
1183-
- Limit importlib_resources as it breaks ``pytest_rewrites`` (#38095, #38139)
1183+
- Limit ``importlib_resources`` as it breaks ``pytest_rewrites`` (#38095, #38139)
11841184
- Limit ``pandas`` to ``<2.2`` (#37748)
11851185
- Bump ``croniter`` to fix an issue with 29 Feb cron expressions (#38198)
11861186

airflow/kubernetes/pre_7_4_0_compatibility/kube_client.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -86,8 +86,8 @@ def _enable_tcp_keepalive() -> None:
8686
else:
8787
log.debug("Unable to set TCP_KEEPCNT on this platform")
8888

89-
HTTPSConnection.default_socket_options = HTTPSConnection.default_socket_options + socket_options
90-
HTTPConnection.default_socket_options = HTTPConnection.default_socket_options + socket_options
89+
HTTPSConnection.default_socket_options = HTTPSConnection.default_socket_options + socket_options # type: ignore[operator]
90+
HTTPConnection.default_socket_options = HTTPConnection.default_socket_options + socket_options # type: ignore[operator]
9191

9292

9393
def get_kube_client(

airflow/reproducible_build.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
release-notes-hash: 29cc62d87a20424fc3497a81fe4edf91
2-
source-date-epoch: 1747334493
1+
release-notes-hash: 90471d3817ea140bbdfd8fcb96c19a2a
2+
source-date-epoch: 1764003839

dev/breeze/doc/images/output_release-management_release-prod-images.svg

Lines changed: 1 addition & 1 deletion
Loading
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
288240b459768445e398365736594161
1+
4ed6a0e2cd315fbbc2f152da455a41bf

dev/breeze/src/airflow_breeze/global_constants.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -313,7 +313,7 @@ def get_default_platform_machine() -> str:
313313
# All python versions include all past python versions available in previous branches
314314
# Even if we remove them from the main version. This is needed to make sure we can cherry-pick
315315
# changes from main to the previous branch.
316-
ALL_PYTHON_MAJOR_MINOR_VERSIONS = ["3.9", "3.10", "3.11", "3.12"]
316+
ALL_PYTHON_MAJOR_MINOR_VERSIONS = ["3.10", "3.11", "3.12"]
317317
CURRENT_PYTHON_MAJOR_MINOR_VERSIONS = ALL_PYTHON_MAJOR_MINOR_VERSIONS
318318
CURRENT_POSTGRES_VERSIONS = ["13", "14", "15", "16", "17"]
319319
DEFAULT_POSTGRES_VERSION = CURRENT_POSTGRES_VERSIONS[0]

dev/breeze/tests/test_cache.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,9 +36,9 @@
3636
[
3737
("backend", "mysql", (True, ["sqlite", "mysql", "postgres", "none"]), None),
3838
("backend", "xxx", (False, ["sqlite", "mysql", "postgres", "none"]), None),
39-
("python_major_minor_version", "3.9", (True, ["3.9", "3.10", "3.11", "3.12"]), None),
40-
("python_major_minor_version", "3.8", (False, ["3.9", "3.10", "3.11", "3.12"]), None),
41-
("python_major_minor_version", "3.7", (False, ["3.9", "3.10", "3.11", "3.12"]), None),
39+
("python_major_minor_version", "3.9", (False, ["3.10", "3.11", "3.12"]), None),
40+
("python_major_minor_version", "3.8", (False, ["3.10", "3.11", "3.12"]), None),
41+
("python_major_minor_version", "3.7", (False, ["3.10", "3.11", "3.12"]), None),
4242
("missing", "value", None, AttributeError),
4343
],
4444
)

dev/breeze/tests/test_packages.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@ def test_find_matching_long_package_name_bad_filter():
157157
"""
158158
"apache-airflow-providers-common-compat>=1.2.1",
159159
"apache-airflow>=2.9.0",
160-
"flask-appbuilder==4.6.",
160+
"flask-appbuilder==4.5.3",
161161
"flask-login>=0.6.3",
162162
"flask-session>=0.8.0",
163163
"flask>=2.2,<3",

0 commit comments

Comments
 (0)