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

Apply PEP-563 (Postponed Evaluation of Annotations) to core airflow #26290

Merged
merged 1 commit into from
Sep 14, 2022
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
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
6 changes: 5 additions & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,11 @@ repos:
args: ["--py37-plus"]
# We need to exclude gcs hook from pyupgrade because it has public "list" command which clashes
# with `list` that is used as type
exclude: ^airflow/_vendor/|^airflow/providers/google/cloud/hooks/gcs.py$
# Test Python tests if different kinds of typing including one that does not have
# __future__ annotations, so it should be left without automated upgrade
# BaseOperator is disabled because replacing ClassVar[List[Type with corresponding list/type causes the attr to fail
# see https://github.com/apache/airflow/pull/26290#issuecomment-1246014807
exclude: ^airflow/_vendor/|^airflow/providers/google/cloud/hooks/gcs.py$|^test/decorators/test_python.py$|^airflow/models/baseoperator.py$
- repo: https://github.com/pre-commit/pygrep-hooks
rev: v1.9.0
hooks:
Expand Down
7 changes: 6 additions & 1 deletion Dockerfile.ci
Original file line number Diff line number Diff line change
Expand Up @@ -908,7 +908,12 @@ else
SELECTED_TESTS=()
for provider in ${BASH_REMATCH[1]//,/ }
do
SELECTED_TESTS+=("tests/providers/${provider//./\/}")
providers_dir="tests/providers/${provider//./\/}"
if [[ -d ${providers_dir} ]]; then
SELECTED_TESTS+=("${providers_dir}")
else
echo "${COLOR_YELLOW}Skip ${providers_dir} as the directory does not exist.${COLOR_RESET}"
fi
done
else
echo
Expand Down
5 changes: 1 addition & 4 deletions airflow/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,6 @@
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
#

"""
Authentication is implemented using flask_login and different environments can
implement their own login mechanisms by providing an `airflow_login` module
Expand All @@ -25,11 +23,10 @@
isort:skip_file
"""
from __future__ import annotations

# flake8: noqa: F401

from __future__ import annotations

import os
import sys
from typing import Callable
Expand Down
3 changes: 2 additions & 1 deletion airflow/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,9 @@
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.

"""Main executable module"""
from __future__ import annotations

import os

import argcomplete
Expand Down
2 changes: 2 additions & 0 deletions airflow/api/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@
# specific language governing permissions and limitations
# under the License.
"""Authentication backend"""
from __future__ import annotations

import logging
from importlib import import_module

Expand Down
8 changes: 5 additions & 3 deletions airflow/api/auth/backend/basic_auth.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,10 @@
# specific language governing permissions and limitations
# under the License.
"""Basic authentication backend"""
from __future__ import annotations

from functools import wraps
from typing import Any, Callable, Optional, Tuple, TypeVar, Union, cast
from typing import Any, Callable, TypeVar, cast

from flask import Response, request
from flask_appbuilder.const import AUTH_LDAP
Expand All @@ -25,7 +27,7 @@
from airflow.utils.airflow_flask_app import get_airflow_app
from airflow.www.fab_security.sqla.models import User

CLIENT_AUTH: Optional[Union[Tuple[str, str], Any]] = None
CLIENT_AUTH: tuple[str, str] | Any | None = None


def init_app(_):
Expand All @@ -35,7 +37,7 @@ def init_app(_):
T = TypeVar("T", bound=Callable)


def auth_current_user() -> Optional[User]:
def auth_current_user() -> User | None:
"""Authenticate and set current user if Authorization header exists"""
auth = request.authorization
if auth is None or not auth.username or not auth.password:
Expand Down
6 changes: 4 additions & 2 deletions airflow/api/auth/backend/default.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,12 @@
# specific language governing permissions and limitations
# under the License.
"""Default authentication backend - everything is allowed"""
from __future__ import annotations

from functools import wraps
from typing import Any, Callable, Optional, Tuple, TypeVar, Union, cast
from typing import Any, Callable, TypeVar, cast

CLIENT_AUTH: Optional[Union[Tuple[str, str], Any]] = None
CLIENT_AUTH: tuple[str, str] | Any | None = None


def init_app(_):
Expand Down
6 changes: 4 additions & 2 deletions airflow/api/auth/backend/deny_all.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,14 @@
# specific language governing permissions and limitations
# under the License.
"""Authentication backend that denies all requests"""
from __future__ import annotations

from functools import wraps
from typing import Any, Callable, Optional, Tuple, TypeVar, Union, cast
from typing import Any, Callable, TypeVar, cast

from flask import Response

CLIENT_AUTH: Optional[Union[Tuple[str, str], Any]] = None
CLIENT_AUTH: tuple[str, str] | Any | None = None


def init_app(_):
Expand Down
5 changes: 3 additions & 2 deletions airflow/api/auth/backend/kerberos_auth.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
from __future__ import annotations

#
# Copyright (c) 2013, Michael Komitee
Expand Down Expand Up @@ -43,7 +44,7 @@
import logging
import os
from functools import wraps
from typing import Any, Callable, Optional, Tuple, TypeVar, Union, cast
from typing import Any, Callable, TypeVar, cast

import kerberos
from flask import Response, _request_ctx_stack as stack, g, make_response, request # type: ignore
Expand All @@ -55,7 +56,7 @@
log = logging.getLogger(__name__)


CLIENT_AUTH: Optional[Union[Tuple[str, str], Any]] = HTTPKerberosAuth(service='airflow')
CLIENT_AUTH: tuple[str, str] | Any | None = HTTPKerberosAuth(service='airflow')


class KerberosService:
Expand Down
6 changes: 4 additions & 2 deletions airflow/api/auth/backend/session.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,14 @@
# specific language governing permissions and limitations
# under the License.
"""Session authentication backend"""
from __future__ import annotations

from functools import wraps
from typing import Any, Callable, Optional, Tuple, TypeVar, Union, cast
from typing import Any, Callable, TypeVar, cast

from flask import Response, g

CLIENT_AUTH: Optional[Union[Tuple[str, str], Any]] = None
CLIENT_AUTH: tuple[str, str] | Any | None = None


def init_app(_):
Expand Down
2 changes: 2 additions & 0 deletions airflow/api/client/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@
# specific language governing permissions and limitations
# under the License.
"""API Client that allows interacting with Airflow API"""
from __future__ import annotations

from importlib import import_module
from typing import Any

Expand Down
2 changes: 2 additions & 0 deletions airflow/api/client/api_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@
# specific language governing permissions and limitations
# under the License.
"""Client for all the API clients."""
from __future__ import annotations

import httpx


Expand Down
1 change: 1 addition & 0 deletions airflow/api/client/json_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
# specific language governing permissions and limitations
# under the License.
"""JSON API Client"""
from __future__ import annotations

from urllib.parse import urljoin

Expand Down
1 change: 1 addition & 0 deletions airflow/api/client/local_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
# specific language governing permissions and limitations
# under the License.
"""Local client API"""
from __future__ import annotations

from airflow.api.client import api_client
from airflow.api.common import delete_dag, trigger_dag
Expand Down
2 changes: 2 additions & 0 deletions airflow/api/common/delete_dag.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@
# specific language governing permissions and limitations
# under the License.
"""Delete DAGs APIs."""
from __future__ import annotations

import logging

from sqlalchemy import and_, or_
Expand Down
5 changes: 3 additions & 2 deletions airflow/api/common/experimental/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,14 +16,15 @@
# specific language governing permissions and limitations
# under the License.
"""Experimental APIs."""
from __future__ import annotations

from datetime import datetime
from typing import Optional

from airflow.exceptions import DagNotFound, DagRunNotFound, TaskNotFound
from airflow.models import DagBag, DagModel, DagRun


def check_and_get_dag(dag_id: str, task_id: Optional[str] = None) -> DagModel:
def check_and_get_dag(dag_id: str, task_id: str | None = None) -> DagModel:
"""Checks that DAG exists and in case it is specified that Task exist"""
dag_model = DagModel.get_current(dag_id)
if dag_model is None:
Expand Down
2 changes: 2 additions & 0 deletions airflow/api/common/experimental/delete_dag.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
from __future__ import annotations

import warnings

from airflow.api.common.delete_dag import * # noqa
Expand Down
2 changes: 2 additions & 0 deletions airflow/api/common/experimental/get_code.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@
# specific language governing permissions and limitations
# under the License.
"""Get code APIs."""
from __future__ import annotations

from deprecated import deprecated

from airflow.api.common.experimental import check_and_get_dag
Expand Down
5 changes: 3 additions & 2 deletions airflow/api/common/experimental/get_dag_run_state.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,16 +16,17 @@
# specific language governing permissions and limitations
# under the License.
"""DAG run APIs."""
from __future__ import annotations

from datetime import datetime
from typing import Dict

from deprecated import deprecated

from airflow.api.common.experimental import check_and_get_dag, check_and_get_dagrun


@deprecated(reason="Use DagRun().get_state() instead", version="2.2.4")
def get_dag_run_state(dag_id: str, execution_date: datetime) -> Dict[str, str]:
def get_dag_run_state(dag_id: str, execution_date: datetime) -> dict[str, str]:
"""Return the Dag Run state identified by the given dag_id and execution_date.

:param dag_id: DAG id
Expand Down
6 changes: 4 additions & 2 deletions airflow/api/common/experimental/get_dag_runs.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,9 @@
# specific language governing permissions and limitations
# under the License.
"""DAG runs APIs."""
from typing import Any, Dict, List, Optional
from __future__ import annotations

from typing import Any

from flask import url_for

Expand All @@ -25,7 +27,7 @@
from airflow.utils.state import DagRunState


def get_dag_runs(dag_id: str, state: Optional[str] = None) -> List[Dict[str, Any]]:
def get_dag_runs(dag_id: str, state: str | None = None) -> list[dict[str, Any]]:
"""
Returns a list of Dag Runs for a specific DAG ID.

Expand Down
8 changes: 5 additions & 3 deletions airflow/api/common/experimental/get_lineage.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,11 @@
# specific language governing permissions and limitations
# under the License.
"""Lineage apis"""
from __future__ import annotations

import collections
import datetime
from typing import Any, Dict
from typing import Any

from sqlalchemy.orm import Session

Expand All @@ -31,15 +33,15 @@
@provide_session
def get_lineage(
dag_id: str, execution_date: datetime.datetime, *, session: Session = NEW_SESSION
) -> Dict[str, Dict[str, Any]]:
) -> dict[str, dict[str, Any]]:
"""Gets the lineage information for dag specified."""
dag = check_and_get_dag(dag_id)
dagrun = check_and_get_dagrun(dag, execution_date)

inlets = XCom.get_many(dag_ids=dag_id, run_id=dagrun.run_id, key=PIPELINE_INLETS, session=session)
outlets = XCom.get_many(dag_ids=dag_id, run_id=dagrun.run_id, key=PIPELINE_OUTLETS, session=session)

lineage: Dict[str, Dict[str, Any]] = collections.defaultdict(dict)
lineage: dict[str, dict[str, Any]] = collections.defaultdict(dict)
for meta in inlets:
lineage[meta.task_id]["inlets"] = meta.value
for meta in outlets:
Expand Down
2 changes: 2 additions & 0 deletions airflow/api/common/experimental/get_task.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@
# specific language governing permissions and limitations
# under the License.
"""Task APIs.."""
from __future__ import annotations

from deprecated import deprecated

from airflow.api.common.experimental import check_and_get_dag
Expand Down
3 changes: 2 additions & 1 deletion airflow/api/common/experimental/get_task_instance.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,8 @@
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
"""Task Instance APIs."""
from __future__ import annotations

from datetime import datetime

from deprecated import deprecated
Expand Down
3 changes: 3 additions & 0 deletions airflow/api/common/experimental/mark_tasks.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,9 @@
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
"""Task Instance APIs."""
from __future__ import annotations

import warnings

from airflow.api.common.mark_tasks import ( # noqa
Expand Down
2 changes: 2 additions & 0 deletions airflow/api/common/experimental/pool.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@
# specific language governing permissions and limitations
# under the License.
"""Pool APIs."""
from __future__ import annotations

from deprecated import deprecated

from airflow.exceptions import AirflowBadRequest, PoolNotFound
Expand Down
1 change: 1 addition & 0 deletions airflow/api/common/experimental/trigger_dag.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
from __future__ import annotations

import warnings

Expand Down
Loading