Skip to content

Commit b4ed666

Browse files
authored
feat: allow for watchdog>=2.0.0 (#186)
`mkdocs>=1.2.2` [depends on](https://github.com/mkdocs/mkdocs/blob/cdf8a26cafa6af6cc78a45766dfec235bd7286cc/setup.py#L69) `watchdog>=2.0` and the restriction of watchdog dependency for functions-framework-python done in #101 seems to be due [an issue related to watchdog built distributions](gorakhargosh/watchdog#689 (comment)) (as explained by @di) which is [now fixed](gorakhargosh/watchdog#807). I propose to allow for `watchdog>=2.0.0` so that a project can use both `mkdocs>=1.2.2` (or `watchdog>=2.0.0`) and `functions-framework-python>=3.0.0`.
1 parent a820fd4 commit b4ed666

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@
5252
install_requires=[
5353
"flask>=1.0,<3.0",
5454
"click>=7.0,<9.0",
55-
"watchdog>=1.0.0,<2.0.0",
55+
"watchdog>=1.0.0",
5656
"gunicorn>=19.2.0,<21.0; platform_system!='Windows'",
5757
"cloudevents>=1.2.0,<2.0.0",
5858
],

0 commit comments

Comments
 (0)