File tree Expand file tree Collapse file tree 2 files changed +8
-3
lines changed Expand file tree Collapse file tree 2 files changed +8
-3
lines changed Original file line number Diff line number Diff line change 22import platform
33from pathlib import Path
44
5- __version__ = "0.1.4 "
5+ __version__ = "0.2.1 "
66
77p = platform .architecture ()
88if not "64" in p [0 ]:
1616else :
1717 raise Exception ("Unsupported platform: " + platform .system ())
1818
19- os .environ ["LD_LIBRARY_PATH" ] = mikebin
19+ if "LD_LIBRARY_PATH" in os .environ :
20+ ld_library_path = os .environ ["LD_LIBRARY_PATH" ]
21+ if mikebin not in ld_library_path :
22+ os .environ ["LD_LIBRARY_PATH" ] += ":" + mikebin
23+ else :
24+ os .environ ["LD_LIBRARY_PATH" ] = mikebin
2025
2126from mikecore .DfsDLL import DfsDLL
2227from mikecore .eum import eumDLL
Original file line number Diff line number Diff line change 55
66setuptools .setup (
77 name = "mikecore" ,
8- version = "0.1.4 " ,
8+ version = "0.2.1 " ,
99 install_requires = ["numpy" ],
1010 author = "DHI" ,
1111
You can’t perform that action at this time.
0 commit comments