Repository: incubator-airflow Updated Branches: refs/heads/master 3c450fbe1 -> 0f55477cc
[AIRFLOW-1172] Support nth weekday of the month cron expression Closes #2321 from sekikn/AIRFLOW-1172 Project: http://git-wip-us.apache.org/repos/asf/incubator-airflow/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-airflow/commit/0f55477c Tree: http://git-wip-us.apache.org/repos/asf/incubator-airflow/tree/0f55477c Diff: http://git-wip-us.apache.org/repos/asf/incubator-airflow/diff/0f55477c Branch: refs/heads/master Commit: 0f55477ccb213ab96962d5eecce447f945b2889d Parents: 3c450fb Author: Kengo Seki <[email protected]> Authored: Wed Jun 14 17:59:02 2017 -0700 Committer: Alex Guziel <[email protected]> Committed: Wed Jun 14 17:59:02 2017 -0700 ---------------------------------------------------------------------- scripts/ci/requirements.txt | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-airflow/blob/0f55477c/scripts/ci/requirements.txt ---------------------------------------------------------------------- diff --git a/scripts/ci/requirements.txt b/scripts/ci/requirements.txt index 5b0612e..0e5dbaf 100644 --- a/scripts/ci/requirements.txt +++ b/scripts/ci/requirements.txt @@ -23,7 +23,7 @@ chartkick cloudant coverage coveralls -croniter +croniter>=0.3.17 cryptography datadog dill http://git-wip-us.apache.org/repos/asf/incubator-airflow/blob/0f55477c/setup.py ---------------------------------------------------------------------- diff --git a/setup.py b/setup.py index 527ee5d..80668da 100644 --- a/setup.py +++ b/setup.py @@ -219,7 +219,7 @@ def do_setup(): 'alembic>=0.8.3, <0.9', 'bleach==2.0.0', 'configparser>=3.5.0, <3.6.0', - 'croniter>=0.3.8, <0.4', + 'croniter>=0.3.17, <0.4', 'dill>=0.2.2, <0.3', 'flask>=0.11, <0.12', 'flask-admin==1.4.1',
