From b3de395037287626701eb5cb9654c0be4471ac8a Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 2 Sep 2024 22:18:13 +0000 Subject: [PATCH] Update watchdog requirement from ~=2.1.9 to ~=5.0.1 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...v5.0.1) --- 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..0ca2f6a 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,5 +1,5 @@ fire~=0.4.0 -watchdog~=2.1.9 +watchdog~=5.0.1 databricks-cli~=0.17.0 argh build~=0.8.0 diff --git a/setup.py b/setup.py index 9edb298..6040515 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,<5.1.0", "build", "databricks_cli"], entry_points={ "console_scripts": ["rocket=rocket.rocket:main", "dbrocket=rocket.rocket:main"] },