Kiln » TortoiseHg » WinBuild Read More
Clone URL:  
Pushed to one repository · View In Graph Contained in 1.1.3, 1.1.4, and 1.1.5

Add comtypes to installer, for new BugTraq support

Changeset bb0c1592d824

Parent 3f2f09776d68

by Steve Borho

Changes to 2 files · Browse files at bb0c1592d824 Showing diff from parent 3f2f09776d68 Diff from another changeset...

Change 1 of 1 Show Entire File README.txt Stacked
 
128
129
130
 
 
 
 
 
131
132
133
 
128
129
130
131
132
133
134
135
136
137
138
@@ -128,6 +128,11 @@
  (requires easy_install from setuptools)   easy_install --always-unzip iniparse   +- comtypes (optional, for BugTraq) + + comtypes-0.6.2.win32.exe from + http://sourceforge.net/projects/comtypes/files/ +  - pyreadline (optional)     required by wincolor extension
Change 1 of 1 Show Entire File setup.py Stacked
 
561
562
563
 
 
 
 
 
 
 
 
564
565
566
 
561
562
563
564
565
566
567
568
569
570
571
572
573
574
@@ -561,6 +561,14 @@
  print 'easy_install --always-unzip iniparse'   sys.exit(1)   + try: + import comtypes + except ImportError: + print 'comtypes not found' + print 'download and install comtypes-0.6.2.win32.exe from' + print 'http://sourceforge.net/projects/comtypes/files/' + sys.exit(1) +   oldpath = os.environ.get('PYTHONPATH', '').split(os.pathsep)   path = ['../build-hg']   if 'keyring' in extensions: