Skip to content

Commit

Permalink
fix: add missing import which was removed while rebasing, add connexi…
Browse files Browse the repository at this point in the history
…on dependencies in pyproject.toml.

Signed-off-by: sudipto baral <sudiptobaral.me@gmail.com>
  • Loading branch information
sudiptob2 committed Feb 22, 2024
1 parent 3803bd8 commit db5fef3
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions airflow/www/extensions/init_views.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
from __future__ import annotations

import logging
import os
import warnings
from functools import cached_property
from pathlib import Path
Expand Down
3 changes: 2 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ dependencies = [
# The usage was added in #30596, seemingly only to override and improve the default error message.
# Either revert that change or find another way, preferably without using connexion internals.
# This limit can be removed after https://github.com/apache/airflow/issues/35234 is fixed
"connexion[flask]>=2.10.0,<3.0",
"connexion[flask,uvicorn,swagger-ui]>=3.0",
"cron-descriptor>=1.2.24",
"croniter>=0.3.17",
"cryptography>=0.9.3",
Expand Down Expand Up @@ -139,6 +139,7 @@ dependencies = [
# The issue tracking it is https://github.com/apache/airflow/issues/28723
"sqlalchemy>=1.4.28,<2.0",
"sqlalchemy-jsonfield>=1.0",
"starlette>=0.37.1",
"tabulate>=0.7.5",
"tenacity>=6.2.0,!=8.2.0",
"termcolor>=1.1.0",
Expand Down
1 change: 0 additions & 1 deletion tests/api_connexion/endpoints/test_dataset_endpoint.py
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,6 @@ def configured_app(minimal_app_for_api):
delete_user(connexion_app.app, username="test_queued_event") # type: ignore



class TestDatasetEndpoint:
default_time = "2020-06-11T18:00:00+00:00"

Expand Down

0 comments on commit db5fef3

Please sign in to comment.