From a3793e14ff7650a17c2e144bc07e0b2a8e2980ed Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 25 Apr 2025 07:24:18 +0000 Subject: [PATCH] Update watchdog requirement from ~=2.1.9 to ~=6.0.0 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...v6.0.0) --- 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 78626ef..30e1422 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,5 +1,5 @@ fire~=0.4.0 -watchdog~=2.1.9 +watchdog~=6.0.0 databricks-cli~=0.17.0 argh build~=0.8.0 diff --git a/setup.py b/setup.py index 9312c1d..05b0eb6 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", "databricks-sdk"], + install_requires=["fire", "watchdog>=2.1.9,<6.1.0", "build", "databricks_cli", "databricks-sdk"], entry_points={ "console_scripts": ["rocket=rocket.rocket:main", "dbrocket=rocket.rocket:main"] },