[issue26089] Duplicated keyword in distutils metadata

2016-04-23 Thread Berker Peksag
Berker Peksag added the comment: I just committed Ezio's patch. Thanks! -- nosy: +berker.peksag resolution: -> fixed stage: commit review -> resolved status: open -> closed ___ Python tracker _

[issue26089] Duplicated keyword in distutils metadata

2016-04-23 Thread Roundup Robot
Roundup Robot added the comment: New changeset 21e522177ca0 by Berker Peksag in branch 'default': Issue #26089: Remove duplicate field 'license' from DistributionMetadata https://hg.python.org/cpython/rev/21e522177ca0 -- nosy: +python-dev ___ Python t

[issue26089] Duplicated keyword in distutils metadata

2016-01-12 Thread Ezio Melotti
Ezio Melotti added the comment: This seems to be because the alternative spelling "licence" was also included in the list, and got changed in #693470/178d19cff163. Because of that change, the method get_licence() is not supported anymore, but at this point removing the duplicate "license" shoul

[issue26089] Duplicated keyword in distutils metadata

2016-01-12 Thread Augustin Laville
New submission from Augustin Laville: The line https://hg.python.org/cpython/file/tip/Lib/distutils/dist.py#l1016 contains the word "licence" twice. Check only on Python, 3.5 and 3.6, may be in others versions. -- components: Distutils messages: 258091 nosy: Augustin Laville, dstufft,