Skip to content

Commit

Permalink
Merge pull request #6408 from JakobJakobson/fix_issue6188
Browse files Browse the repository at this point in the history
PR: Change share/pixmaps to share/icons in setup.py
  • Loading branch information
ccordoba12 authored Feb 11, 2018
2 parents 1403c74 + 3ed2a0e commit d9c7a3b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -79,11 +79,11 @@ def get_data_files():
if sys.platform.startswith('linux'):
if PY3:
data_files = [('share/applications', ['scripts/spyder3.desktop']),
('share/pixmaps', ['img_src/spyder3.png']),
('share/icons', ['img_src/spyder3.png']),
('share/metainfo', ['scripts/spyder3.appdata.xml'])]
else:
data_files = [('share/applications', ['scripts/spyder.desktop']),
('share/pixmaps', ['img_src/spyder.png'])]
('share/icons', ['img_src/spyder.png'])]
elif os.name == 'nt':
data_files = [('scripts', ['img_src/spyder.ico',
'img_src/spyder_reset.ico'])]
Expand Down

0 comments on commit d9c7a3b

Please sign in to comment.