[issue13055] Distutils tries to handle null versions but fails

2021-02-03 Thread Steve Dower
Steve Dower added the comment: Distutils is now deprecated (see PEP 632) and all tagged issues are being closed. From now until removal, only release blocking issues will be considered for distutils. If this issue does not relate to distutils, please remove the component and reopen it. If y

[issue13055] Distutils tries to handle null versions but fails

2019-03-01 Thread Roundup Robot
Change by Roundup Robot : -- keywords: +patch pull_requests: +12129 stage: needs patch -> patch review ___ Python tracker ___ ___ Py

[issue13055] Distutils tries to handle null versions but fails

2014-06-28 Thread Mark Lawrence
Changes by Mark Lawrence : -- components: -Distutils2 nosy: +dstufft versions: +Python 3.4, Python 3.5 -3rd party, Python 3.2, Python 3.3 ___ Python tracker ___

[issue13055] Distutils tries to handle null versions but fails

2011-10-10 Thread Ben Gamari
Ben Gamari added the comment: Sorry, no log is available. -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: h

[issue13055] Distutils tries to handle null versions but fails

2011-10-10 Thread Éric Araujo
Éric Araujo added the comment: > The bug was encountered while trying to install a package. As it turns > out, a dependency was incorrectly installed, resulting in a null > version being passed around which quickly caused a crash in setup.py. > While this is definitely not a normal circumstance,

[issue13055] Distutils tries to handle null versions but fails

2011-10-09 Thread Ben Gamari
Ben Gamari added the comment: The bug was encountered while trying to install a package. As it turns out, a dependency was incorrectly installed, resulting in a null version being passed around which quickly caused a crash in setup.py. While this is definitely not a normal circumstance, the f

[issue13055] Distutils tries to handle null versions but fails

2011-10-09 Thread Éric Araujo
Éric Araujo added the comment: The fact that 1) StrictVersion and LooseVersion have None as default argument for vstring in __init__ 2) __init__ does not raise an exception if vstring is not given makes me think that the intended behavior is that the vstring argument is optional. Making it r

[issue13055] Distutils tries to handle null versions but fails

2011-10-04 Thread Éric Araujo
Éric Araujo added the comment: Thanks, will fix it. -- assignee: tarek -> eric.araujo components: +Distutils2 nosy: +alexis versions: +3rd party, Python 3.2, Python 3.3 ___ Python tracker _

[issue13055] Distutils tries to handle null versions but fails

2011-09-28 Thread Ezio Melotti
Changes by Ezio Melotti : -- stage: -> test needed type: crash -> behavior ___ Python tracker ___ ___ Python-bugs-list mailing list U

[issue13055] Distutils tries to handle null versions but fails

2011-09-28 Thread Ben Gamari
Changes by Ben Gamari : -- assignee: -> tarek components: +Distutils nosy: +eric.araujo, tarek type: -> crash versions: +Python 2.7 ___ Python tracker ___ _

[issue13055] Distutils tries to handle null versions but fails

2011-09-28 Thread Ben Gamari
Changes by Ben Gamari : Added file: http://bugs.python.org/file23253/distutils-workaround.patch ___ Python tracker ___ ___ Python-bugs-list ma

[issue13055] Distutils tries to handle null versions but fails

2011-09-28 Thread Ben Gamari
New submission from Ben Gamari : The distutils.LooseVersion constructor currently only calls parse if vstring has a value. Unfortunately, this means that a user passing in vstring="" or vstring=None gets a version object with self.vstring and self.version unset. This wreaks havoc later when th