This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: licence/license confusion
Type: Stage:
Components: Distutils Versions:
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: akuchling Nosy List: akuchling, gvanrossum
Priority: high Keywords:

Created on 2001-03-29 19:38 by akuchling, last changed 2022-04-10 16:03 by admin. This issue is now closed.

Messages (4)
msg4121 - (view) Author: A.M. Kuchling (akuchling) * (Python committer) Date: 2001-03-29 19:38
Thomas Heller points out:

Playing with the new meta info, I noticed that the
license specified in this way:
 
setup(..., license="MIT/X11", ...)
 
isn't recognized, while it works if one uses:
 
setup(..., licence="MIT/X11", ...)

BTW; according to www.opensource.org the MIT license
seems to be spelled MIT license nowadays, no longer
MIT/X11 license.
msg4122 - (view) Author: Guido van Rossum (gvanrossum) * (Python committer) Date: 2001-04-13 15:46
Logged In: YES 
user_id=6380

andrew, were you going to fix this before 2.1?
msg4123 - (view) Author: A.M. Kuchling (akuchling) * (Python committer) Date: 2001-04-16 14:17
Logged In: YES 
user_id=11375

No, I wasn't planning to.
msg4124 - (view) Author: A.M. Kuchling (akuchling) * (Python committer) Date: 2001-08-10 19:08
Logged In: YES 
user_id=11375

Fixed in revision 1.48 of dist.py.  I've also edited PEP 
241 to just say "MIT license".

History
Date User Action Args
2022-04-10 16:03:54adminsetgithub: 34254
2001-03-29 19:38:34akuchlingcreate