Work around deprecation of platform.dist() in recent python
This commit is contained in:
parent
81645eadef
commit
671df69303
13
setup.py
13
setup.py
|
@ -95,11 +95,14 @@ if __name__ == "__main__":
|
||||||
['desktop/icons/24x24/pybitmessage.png'])
|
['desktop/icons/24x24/pybitmessage.png'])
|
||||||
]
|
]
|
||||||
|
|
||||||
if platform.dist()[0] in ('Debian', 'Ubuntu'):
|
try:
|
||||||
data_files += [
|
if platform.dist()[0] in ('Debian', 'Ubuntu'):
|
||||||
("etc/apparmor.d/",
|
data_files += [
|
||||||
['packages/apparmor/pybitmessage'])
|
("etc/apparmor.d/",
|
||||||
]
|
['packages/apparmor/pybitmessage'])
|
||||||
|
]
|
||||||
|
except AttributeError:
|
||||||
|
pass # FIXME: use distro for more recent python
|
||||||
|
|
||||||
dist = setup(
|
dist = setup(
|
||||||
name='pybitmessage',
|
name='pybitmessage',
|
||||||
|
|
Loading…
Reference in New Issue
Block a user