Skip to content

Commit

Permalink
feat: allow for watchdog>=2.0.0 (#186)
Browse files Browse the repository at this point in the history
`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`.
  • Loading branch information
MichaelKarpe committed May 18, 2022
1 parent a820fd4 commit b4ed666
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@
install_requires=[
"flask>=1.0,<3.0",
"click>=7.0,<9.0",
"watchdog>=1.0.0,<2.0.0",
"watchdog>=1.0.0",
"gunicorn>=19.2.0,<21.0; platform_system!='Windows'",
"cloudevents>=1.2.0,<2.0.0",
],
Expand Down

0 comments on commit b4ed666

Please sign in to comment.