Fix build error with Python 3 caused by itervalues() in setup.py
commit99c8d7cedce81f17b851954d94bfa73787300599
authorChristophe Vu-Brugier <cvubrugier@fastmail.fm>
Fri, 17 Oct 2014 11:49:31 +0000 (17 13:49 +0200)
committerPaul Wise <pabs3@bonedaddy.net>
Sat, 18 Oct 2014 06:00:02 +0000 (18 14:00 +0800)
tree1a8439c73dd627fe1eec5a21a4cf4061e57a0897
parente34fe9b424c0a7c8c78279a6076f3a1a8597d3b8
Fix build error with Python 3 caused by itervalues() in setup.py

The itervalues() method is not available in Python 3. As a
consequence, this patch replaces the call to itervalues() in setup.py
with a call to values() which works on both Python 2 and Python 3.

Signed-off-by: Christophe Vu-Brugier <cvubrugier@fastmail.fm>
Signed-off-by: Paul Wise <pabs3@bonedaddy.net>
setup.py