moteus 0.3.77__tar.gz → 0.3.78__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {moteus-0.3.77 → moteus-0.3.78}/PKG-INFO +1 -1
- {moteus-0.3.77 → moteus-0.3.78}/moteus/moteus_tool.py +4 -1
- {moteus-0.3.77 → moteus-0.3.78}/moteus/version.py +1 -1
- {moteus-0.3.77 → moteus-0.3.78}/moteus.egg-info/PKG-INFO +1 -1
- {moteus-0.3.77 → moteus-0.3.78}/setup.py +1 -1
- {moteus-0.3.77 → moteus-0.3.78}/README.md +0 -0
- {moteus-0.3.77 → moteus-0.3.78}/moteus/__init__.py +0 -0
- {moteus-0.3.77 → moteus-0.3.78}/moteus/aioserial.py +0 -0
- {moteus-0.3.77 → moteus-0.3.78}/moteus/aiostream.py +0 -0
- {moteus-0.3.77 → moteus-0.3.78}/moteus/calibrate_encoder.py +0 -0
- {moteus-0.3.77 → moteus-0.3.78}/moteus/command.py +0 -0
- {moteus-0.3.77 → moteus-0.3.78}/moteus/export.py +0 -0
- {moteus-0.3.77 → moteus-0.3.78}/moteus/fdcanusb.py +0 -0
- {moteus-0.3.77 → moteus-0.3.78}/moteus/moteus.py +0 -0
- {moteus-0.3.77 → moteus-0.3.78}/moteus/multiplex.py +0 -0
- {moteus-0.3.77 → moteus-0.3.78}/moteus/posix_aioserial.py +0 -0
- {moteus-0.3.77 → moteus-0.3.78}/moteus/pythoncan.py +0 -0
- {moteus-0.3.77 → moteus-0.3.78}/moteus/reader.py +0 -0
- {moteus-0.3.77 → moteus-0.3.78}/moteus/regression.py +0 -0
- {moteus-0.3.77 → moteus-0.3.78}/moteus/router.py +0 -0
- {moteus-0.3.77 → moteus-0.3.78}/moteus/transport.py +0 -0
- {moteus-0.3.77 → moteus-0.3.78}/moteus/win32_aioserial.py +0 -0
- {moteus-0.3.77 → moteus-0.3.78}/moteus.egg-info/SOURCES.txt +0 -0
- {moteus-0.3.77 → moteus-0.3.78}/moteus.egg-info/dependency_links.txt +0 -0
- {moteus-0.3.77 → moteus-0.3.78}/moteus.egg-info/entry_points.txt +0 -0
- {moteus-0.3.77 → moteus-0.3.78}/moteus.egg-info/requires.txt +0 -0
- {moteus-0.3.77 → moteus-0.3.78}/moteus.egg-info/top_level.txt +0 -0
- {moteus-0.3.77 → moteus-0.3.78}/setup.cfg +0 -0
@@ -1171,7 +1171,10 @@ class Stream:
|
|
1171
1171
|
|
1172
1172
|
print("Calibration complete")
|
1173
1173
|
|
1174
|
-
|
1174
|
+
try:
|
1175
|
+
now = datetime.datetime.now(datetime.timezone.utc)
|
1176
|
+
except:
|
1177
|
+
now = datetime.datetime.utcnow()
|
1175
1178
|
|
1176
1179
|
report = {
|
1177
1180
|
'timestamp' : now.strftime('%Y-%m-%d %H:%M:%S.%f'),
|
@@ -25,7 +25,7 @@ long_description = (here / 'README.md').read_text(encoding='utf-8')
|
|
25
25
|
|
26
26
|
setuptools.setup(
|
27
27
|
name = 'moteus',
|
28
|
-
version = "0.3.
|
28
|
+
version = "0.3.78",
|
29
29
|
description = 'moteus brushless controller library and tools',
|
30
30
|
long_description = long_description,
|
31
31
|
long_description_content_type = 'text/markdown',
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|