From 52f9d081de0616f82dc8ddfc9c73e756342c8075 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 12 Aug 2024 22:09:42 +0000 Subject: [PATCH] Update watchdog requirement from ~=2.1.9 to ~=4.0.2 Updates the requirements on [watchdog](https://github.com/gorakhargosh/watchdog) to permit the latest version. - [Release notes](https://github.com/gorakhargosh/watchdog/releases) - [Changelog](https://github.com/gorakhargosh/watchdog/blob/master/changelog.rst) - [Commits](https://github.com/gorakhargosh/watchdog/compare/v2.1.9...v4.0.2) --- updated-dependencies: - dependency-name: watchdog dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- requirements.txt | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/requirements.txt b/requirements.txt index e05293c..f29cf07 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,5 +1,5 @@ fire~=0.4.0 -watchdog~=2.1.9 +watchdog~=4.0.2 databricks-cli~=0.17.0 argh build~=0.8.0 diff --git a/setup.py b/setup.py index 9edb298..7095cc4 100644 --- a/setup.py +++ b/setup.py @@ -17,7 +17,7 @@ long_description_content_type="text/markdown", url="https://github.com/getyourguide/db-rocket", packages=setuptools.find_packages(), - install_requires=["fire", "watchdog~=2.1.9", "build", "databricks_cli"], + install_requires=["fire", "watchdog>=2.1.9,<4.1.0", "build", "databricks_cli"], entry_points={ "console_scripts": ["rocket=rocket.rocket:main", "dbrocket=rocket.rocket:main"] },