msg209764 - (view) |
Author: Francis Moreau (fmoreau) |
Date: 2014-01-31 11:02 |
On Archlinux: $ python2.7 -c 'import platform; print(platform.linux_distribution())' ('', '', '') This is because Archlinux is not part of the '_supported_dists' list. Could Archlinux be added to this list ? Thanks. |
|
|
msg237626 - (view) |
Author: Mark Lawrence (BreamoreBoy) * |
Date: 2015-03-09 09:53 |
Can Archlinux be added to _supported_dists as requested in , I've no understanding of the criteria involved here? |
|
|
msg241212 - (view) |
Author: (ha034) |
Date: 2015-04-16 11:49 |
Hey guys, Just add: if os.path.exists('/etc/arch-release'): distname = 'arch' in "_dist_try_harder" then replace the old list with this one: _supported_dists = ( 'SuSE', 'debian', 'fedora', 'redhat', 'centos', 'mandrake', 'mandriva', 'rocks', 'slackware', 'yellowdog', 'gentoo', 'UnitedLinux', 'turbolinux', 'arch') And that's it, it works. |
|
|
msg241280 - (view) |
Author: R. David Murray (r.david.murray) *  |
Date: 2015-04-16 21:59 |
Since the direction we are heading seems to toward deprecating linux_distribution (see http://bugs.python.org/issue1322#msg207427), I think this issue should be closed. |
|
|
msg244927 - (view) |
Author: Nathan Ringo (Nathan Ringo) * |
Date: 2015-06-06 20:24 |
The problem is, existing software (Ansible) relies on linux_distribution() |
|
|
msg317687 - (view) |
Author: Petr Viktorin (petr.viktorin) *  |
Date: 2018-05-25 17:17 |
linux_distribution is removed in Python 3.7. Closing. |
|
|
msg317689 - (view) |
Author: Petr Viktorin (petr.viktorin) *  |
Date: 2018-05-25 17:20 |
Er, sorry, I meant in 3.8. |
|
|