Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 076d646

Browse files
committed
fixed last remaining known pytz setup bug
svn path=/trunk/matplotlib/; revision=6111
1 parent e26c3e2 commit 076d646

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

setup.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,7 @@
164164
# only install pytz and dateutil if the user hasn't got them
165165

166166
def add_pytz():
167-
packages = ['pytz']
167+
packages.append('pytz')
168168
resources = ['zone.tab', 'locales/pytz.pot']
169169
for dirpath, dirnames, filenames in os.walk(os.path.join('lib', 'pytz', 'zoneinfo')):
170170
# remove the 'pytz' part of the path
@@ -229,6 +229,8 @@ def add_dateutil():
229229
if options['verbose']:
230230
mod.extra_compile_args.append('-DVERBOSE')
231231

232+
print 'pymods', py_modules
233+
print 'packages', packages
232234
distrib = setup(name="matplotlib",
233235
version= __version__,
234236
description = "Python plotting package",

0 commit comments

Comments
 (0)