Skip to content

Commit

Permalink
v2.1.1: fixed issue with installation in v2.1.0
Browse files Browse the repository at this point in the history
All dependencies of 'six' where not being included.
  • Loading branch information
donovan-h-parks committed Jun 7, 2015
1 parent 9576296 commit 9c1edf3
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
6 changes: 3 additions & 3 deletions createExeWindows.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@
# setup configuration
setup(
name = "STAMP",
version = "2.0.6",
version = "2.1.1",
description = "Statistical analysis of taxonomic and functional profiles",
author = "Donovan Parks",
windows=[{"script":"STAMP.py", "icon_resources": [(1, "./stamp/icons/stamp.ico")]}],
Expand All @@ -77,8 +77,8 @@
"unbuffered": True,
"optimize": 2,
"skip_archive": True,
"includes": ["sip", "PyQt4", "sqlite3"],
"packages": ["matplotlib","pytz","scipy","mpl_toolkits", "pyparsing", "biom", "pyqi", "h5py"],
"includes": ["sip", "PyQt4", "sqlite3", "FileDialog"],
"packages": ["matplotlib","pytz","scipy","mpl_toolkits", "pyparsing", "biom", "pyqi", "h5py", "six"],
"dll_excludes": ["libgdk_pixbuf-2.0-0.dll","libgdk-win32-2.0-0.dll", "libgobject-2.0-0.dll", "tcl84.dll", "tk84.dll"],
}
},
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
('.', ['README.md'])]
setup(
name='STAMP',
version='2.1.0',
version='2.1.1',
author='Donovan Parks, Rob Beiko',
author_email='[email protected]',
packages=['stamp', 'stamp.GUI'] + pluginPkgs + metagenomicPkgs,
Expand Down
4 changes: 2 additions & 2 deletions stamp/STAMP.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@
__copyright__ = 'Copyright 2013'
__credits__ = ['Donovan Parks']
__license__ = 'GPL3'
__version__ = '2.1.0'
__date__ = 'June 4, 2015'
__version__ = '2.1.1'
__date__ = 'June 7, 2015'
__maintainer__ = 'Donovan Parks'
__email__ = '[email protected]'
__status__ = 'Development'
Expand Down
4 changes: 2 additions & 2 deletions windows/STAMP_Setup.iss
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
; (To generate a new GUID, click Tools | Generate GUID inside the IDE.)
AppId={{058AA4B2-FB5A-4D89-9134-D6E06AB9E894}
AppName=STAMP
AppVerName=STAMP v2.1.0
AppVerName=STAMP v2.1.1
AppPublisher=Donovan Parks and Robert Beiko
AppPublisherURL=http://kiwi.cs.dal.ca/Software/STAMP
AppSupportURL=http://kiwi.cs.dal.ca/Software/STAMP
Expand All @@ -18,7 +18,7 @@ AllowNoIcons=yes
LicenseFile=..\dist\LICENSE.txt
InfoBeforeFile=..\dist\readme.txt
OutputDir=.\install
OutputBaseFilename=STAMP_2_1_0
OutputBaseFilename=STAMP_2_1_1
SetupIconFile=..\dist\icons\stamp.ico
Compression=lzma
SolidCompression=yes
Expand Down

0 comments on commit 9c1edf3

Please sign in to comment.