summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorWilliam Deegan <bill@baddogconsulting.com>2017-10-04 00:14:10 (GMT)
committerWilliam Deegan <bill@baddogconsulting.com>2017-10-04 00:14:10 (GMT)
commitde3ebf6b0f53cf32991f548caf6401f20a2eb05e (patch)
tree6cbe93d7f7096a0ff7a20a8b18cccdf61fc298fc /src
parent56080b1c09eb9659419c5ada7c0a888fc048822c (diff)
downloadSCons-de3ebf6b0f53cf32991f548caf6401f20a2eb05e.zip
SCons-de3ebf6b0f53cf32991f548caf6401f20a2eb05e.tar.gz
SCons-de3ebf6b0f53cf32991f548caf6401f20a2eb05e.tar.bz2
Simplify main SConstruct. Remove deb and rpm and win executable package creation as we're moving to pip install being the main install path.
Diffstat (limited to 'src')
-rw-r--r--src/setup.py10
1 files changed, 0 insertions, 10 deletions
diff --git a/src/setup.py b/src/setup.py
index 1957db6..100e367 100644
--- a/src/setup.py
+++ b/src/setup.py
@@ -76,16 +76,6 @@ import distutils.command.build_scripts
import distutils.msvccompiler
-def get_build_version():
- """ monkey patch distutils msvc version if we're not on windows.
- We need to use vc version 9 for python 2.7.x and it defaults to 6
- for non-windows platforms and there is no way to override it besides
- monkey patching"""
- return 9
-
-
-distutils.msvccompiler.get_build_version = get_build_version
-
_install = distutils.command.install.install
_install_data = distutils.command.install_data.install_data
_install_lib = distutils.command.install_lib.install_lib