From 399993fef2a8cd3d74abf6d15fc73ce5be38a4bc Mon Sep 17 00:00:00 2001 From: Wieland Hoffmann Date: Mon, 1 May 2017 14:30:10 +0200 Subject: [PATCH] patch_version: Use sys.platform as the default platform name The names which sys.platform uses are not well-known across all users (darwin for macOS for example), so this doesn't change the values used in the packaging scripts. --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index e00d0f86b..0573c2958 100755 --- a/setup.py +++ b/setup.py @@ -577,7 +577,7 @@ class picard_patch_version(Command): ] def initialize_options(self): - self.platform = 'unknown' + self.platform = sys.platform def finalize_options(self): pass