Fix watchdog version

In u-c it's fixed only for py3, while for py2 it's unconstrained.
This breaks environments, and watchdog should be fixed to 0.10.6

Change-Id: Iab2783c49f4a537748625ee663d9af41dacb00ce
Closes-Bug: #1909318
Closes-Bug: #1909158
This commit is contained in:
Dmitriy Rabotyagov 2021-04-23 17:03:19 +03:00
parent af4f157892
commit e9a41ec778
2 changed files with 2 additions and 1 deletions

View File

@ -12,3 +12,4 @@
pip==9.0.3 # Frozen to prevent 10.x empty package list issue
setuptools==39.0.1 # Frozen to not bump to a new major version in stable branch
wheel==0.31.1
watchdog==0.10.6

View File

@ -372,7 +372,7 @@ function get_pip {
${GETPIP_CMD} ${GET_PIP_URL}
else
# Otherwise, try the two standard URL's
${GETPIP_CMD} https://bootstrap.pypa.io/3.3/get-pip.py \
${GETPIP_CMD} https://bootstrap.pypa.io/pip/3.3/get-pip.py \
|| ${GETPIP_CMD} https://raw.githubusercontent.com/pypa/get-pip/master/3.3/get-pip.py
fi