8000
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.
1 parent a2b935c commit 5763d5aCopy full SHA for 5763d5a
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