We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5cfdac8 commit 253f714Copy full SHA for 253f714
setup.py
@@ -50,12 +50,10 @@
50
library_dirs = [r"c:\ta-lib\c\lib"]
51
52
if 'TA_INCLUDE_PATH' in os.environ:
53
- paths = os.environ['TA_INCLUDE_PATH'].split(os.pathsep)
54
- include_dirs.extend(path for path in paths if path)
+ include_dirs = os.environ['TA_INCLUDE_PATH'].split(os.pathsep)
55
56
if 'TA_LIBRARY_PATH' in os.environ:
57
- paths = os.environ['TA_LIBRARY_PATH'].split(os.pathsep)
58
- library_dirs.extend(path for path in paths if path)
+ library_dirs = os.environ['TA_LIBRARY_PATH'].split(os.pathsep)
59
60
if not platform_supported:
61
raise NotImplementedError(sys.platform)
0 commit comments