Skip to content

Commit 4aba9c5

Browse files
authored
Fix brokend master (#13201)
1 parent 49f104b commit 4aba9c5

File tree

2 files changed

+3
-6
lines changed

2 files changed

+3
-6
lines changed

CHANGELOG.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -944,7 +944,7 @@ Misc/Internal
944944
- [AIRFLOW-XXX] Remove executable permission from file
945945
- [AIRFLOW-XXX] Group AWS & Azure dependencies (old ``[emr]`` etc. extra still work)
946946
- [AIRFLOW-5487] Fix unused warning var (#6111)
947-
- [AIRFLOW-5925] Relax funcsigs and psutil version requirements (#6580)
947+
- [AIRFLOW-5925] Relax ``funcsigs`` and psutil version requirements (#6580)
948948
- [AIRFLOW-5740] Fix Transient failure in Slack test (#6407)
949949
- [AIRFLOW-6058] Running tests with pytest (#6472)
950950
- [AIRFLOW-6066] Added pre-commit checks for accidental debug stmts (#6662)
@@ -3577,7 +3577,7 @@ Airflow 1.8.1, 2017-05-09
35773577
- [AIRFLOW-806] UI should properly ignore DAG doc when it is None
35783578
- [AIRFLOW-794] Consistent access to DAGS_FOLDER and SQL_ALCHEMY_CONN
35793579
- [AIRFLOW-785] ImportError if cgroupspy is not installed
3580-
- [AIRFLOW-784] Cannot install with funcsigs > 1.0.0
3580+
- [AIRFLOW-784] Cannot install with ``funcsigs`` > 1.0.0
35813581
- [AIRFLOW-780] The UI no longer shows broken DAGs
35823582
- [AIRFLOW-777] dag_is_running is initialized to True instead of False
35833583
- [AIRFLOW-719] Skipped operations make DAG finish prematurely
@@ -3641,7 +3641,7 @@ Airflow 1.8.0, 2017-03-12
36413641
- [AIRFLOW-776] Add missing cgroups devel dependency
36423642
- [AIRFLOW-777] Fix expression to check if a DagRun is in running state
36433643
- [AIRFLOW-785] Don't import CgroupTaskRunner at global scope
3644-
- [AIRFLOW-784] Pin funcsigs to 1.0.0
3644+
- [AIRFLOW-784] Pin ``funcsigs`` to 1.0.0
36453645
- [AIRFLOW-624] Fix setup.py to not import airflow.version as version
36463646
- [AIRFLOW-779] Task should fail with specific message when deleted
36473647
- [AIRFLOW-778] Fix completely broken MetastorePartitionSensor

tests/operators/test_python.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@
2424
from subprocess import CalledProcessError
2525
from typing import Dict, List, Tuple
2626

27-
import funcsigs
2827
import pytest
2928

3029
from airflow.exceptions import AirflowException
@@ -1204,8 +1203,6 @@ def f():
12041203
self._run_as_operator(f, requirements=['funcsigs'], system_site_packages=True)
12051204

12061205
def test_with_requirements_pinned(self):
1207-
self.assertNotEqual('0.4', funcsigs.__version__, 'Please update this string if this fails')
1208-
12091206
def f():
12101207
import funcsigs # noqa: F401 # pylint: disable=redefined-outer-name,reimported
12111208

0 commit comments

Comments
 (0)