From 53027c19757217948409f5f9702975ebaaca961a Mon Sep 17 00:00:00 2001 From: "W. Trevor King" Date: Sun, 22 Jul 2012 11:30:40 -0400 Subject: [PATCH] Use modern {} formatting instead of %s for setup.py's provides option. --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 67eb254..a204c0e 100644 --- a/setup.py +++ b/setup.py @@ -58,5 +58,5 @@ setup(name=package_name, 'bin/igorbinarywave.py', 'bin/igorpackedexperiment.py', ], - provides=['igor (%s)' % __version__], + provides=['igor ({})'.format(__version__)], ) -- 2.26.2