Skip to content
Snippets Groups Projects
Commit 8fe5d544 authored by Olivier Bertrand's avatar Olivier Bertrand
Browse files

Update databases

parent 5582171b
No related branches found
No related tags found
No related merge requests found
Source diff could not be displayed: it is too large. Options to address this: view the blob.
......@@ -32,7 +32,7 @@ OnGrid:
alpha_1: [0 , 0 ,1]
alpha_2: [0 , 0 ,1]
# The orientation convention is defined as:
rotconv: 'rzyx'
rotconv: 'zyx'
# Note when rotconv 'quaternion' is used:
# the coordinate q_3 is required
# q_3: [0, 0, 1]
\ No newline at end of file
# q_3: [0, 0, 1]
No preview for this file type
No preview for this file type
......@@ -21,9 +21,13 @@ for pkg in packages:
try:
cmod = __import__(pkg)
except ImportError as e:
# Not use by blender so no incompatibilty issues
# Not use by blender so no incompatibilty issues
continue
try:
line = pkg + '==' + cmod.__version__
except AttributeError as e:
#Package as no __version__
continue
line = pkg + '==' + cmod.__version__
print('\t', line)
requirements.append(line)
# Write a requirement file to auto install the packages
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment