Don't set the Python version for sdist uploads.
diff --git a/Lib/distutils/command/upload.py b/Lib/distutils/command/upload.py
index ad0e230..a62da78 100644
--- a/Lib/distutils/command/upload.py
+++ b/Lib/distutils/command/upload.py
@@ -89,6 +89,8 @@
                 comment = 'built for %s %s' % (dist, version)
         elif command == 'bdist_dumb':
             comment = 'built for %s' % platform.platform(terse=1)
+        elif command == 'sdist':
+            data['pyversion'] = ''
         data['comment'] = comment
 
         if self.sign: