We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 06f4fab commit 9777ed2Copy full SHA for 9777ed2
1 file changed
setup.py
@@ -39,8 +39,11 @@ def generateIDL():
39
40
41
try:
42
- # if we don't have omniidl then don't try to generate OMPythonIDL files.
43
- import omniidl
+ # if we don't have omniidl or omniORB then don't try to generate OMPythonIDL files.
+ try:
44
+ import omniidl
45
+ except ImportError:
46
+ import omniORB
47
hasomniidl = True
48
generateIDL()
49
except ImportError:
@@ -51,7 +54,7 @@ def generateIDL():
51
54
OMPython_packages.extend(['OMPythonIDL', 'OMPythonIDL._OMCIDL', 'OMPythonIDL._OMCIDL__POA'])
52
55
53
56
setup(name='OMPython',
- version='3.0.0',
57
+ version='3.0.1',
58
description='OpenModelica-Python API Interface',
59
author='Anand Kalaiarasi Ganeson',
60
author_email='ganan642@student.liu.se',
0 commit comments