We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents a2b935c + 5763d5a commit 79c60cbCopy full SHA for 79c60cb
setupegg.py
@@ -9,13 +9,11 @@
9
# Setupegg assumes the install tree and source tree are exactly the same. Since
10
# this is not the case, symlink the correct dateutil dir depending on which
11
# version of python is used
12
-os.chdir('lib')
13
-if not os.path.isdir('dateutil'):
+if not os.path.isdir('lib/dateutil'):
14
if sys.version_info[0] >= 3:
15
- os.symlink('dateutil_py3', 'dateutil')
+ os.symlink('dateutil_py3', 'lib/dateutil')
16
else:
17
- os.symlink('dateutil_py2', 'dateutil')
18
-os.chdir('..')
+ os.symlink('dateutil_py2', 'lib/dateutil')
19
20
execfile('setup.py',
21
{'additional_params' :
0 commit comments