Skip to content

Commit 4cfd118

Browse files
committed
bump requirements
1 parent 8c097e1 commit 4cfd118

File tree

2 files changed

+14
-11
lines changed

2 files changed

+14
-11
lines changed

requirements_stub.txt

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Basic set of required packages. If you need to run on a real system (NOT in STUB mode)
22
# install the packages in `requirements.txt` too.
33

4-
absl-py==0.4.1
4+
absl-py==0.8.1
55
apiai==1.2.3
66
astor==0.7.1
77
Babel==2.5.3
@@ -10,21 +10,21 @@ chardet==3.0.4
1010
click==6.7
1111
clickclick==1.2.2
1212
connexion==1.4.2
13-
Flask==1.0.2
14-
Flask-Babel==0.11.2
15-
Flask-Cors==3.0.4
13+
Flask==1.1.1
14+
Flask-Babel==0.12.2
15+
Flask-Cors==3.0.8
1616
gast==0.2.0
1717
grpcio==1.15.0
1818
idna==2.6
1919
inflection==0.3.1
2020
itsdangerous==0.24
21-
Jinja2==2.10
21+
Jinja2==2.10.3
2222
jsonschema==2.6.0
2323
Markdown==2.6.11
2424
MarkupSafe==1.0
25-
numpy==1.14.3
25+
numpy==1.17.4
2626
opencv-contrib-python==3.4.3.18
27-
pigpio==1.40.post1
27+
pigpio==1.44
2828
Pillow==6.2.0
2929
protobuf==3.6.1
3030
Pypubsub==4.0.0
@@ -35,11 +35,11 @@ requests==2.20.0
3535
six==1.11.0
3636
smbus2==0.2.0
3737
swagger-spec-validator==2.3.1
38-
tensorboard==1.11.0
39-
tensorflow==1.11.0
38+
tensorboard==1.14.0
39+
tensorflow==1.14.0
4040
termcolor==1.1.0
4141
tinydb==3.12.1
4242
urllib3==1.23
4343
Werkzeug==0.15.3
44-
setuptools==39.1.0
44+
setuptools==42.0.1
4545
cachetools==3.0.0

rotary_encoder/wheelsaxel.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,10 @@ def stop(self):
130130
# updating state
131131
self._is_moving = False
132132
# restoring callback
133-
self._wheelsAxle_lock.release()
133+
try:
134+
self._wheelsAxle_lock.release()
135+
except RuntimeError:
136+
pass
134137

135138
# CALLBACK
136139
def cancel_callback(self):

0 commit comments

Comments
 (0)