Skip to content

Commit

Permalink
clean up cruft, version release date
Browse files Browse the repository at this point in the history
  • Loading branch information
newville committed Mar 22, 2024
1 parent b23c894 commit 509332b
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
2 changes: 0 additions & 2 deletions larch/apps.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,6 @@ def make_desktop_shortcut(self, folder='Larch'):
"""make (or remake) desktop shortcuts for Larch apps"""
bindir = 'Scripts' if uname == 'win' else 'bin'
bindir = os.path.join(sys.prefix, bindir)
print("BINDIR ")
script = self.script
if not self.script.startswith('_'):
script = os.path.normpath(os.path.join(bindir, self.script))
Expand All @@ -67,7 +66,6 @@ def make_desktop_shortcut(self, folder='Larch'):
if os.path.exists(ticon):
icon = ticon

print("MAKE D short ", self.name, script)
make_shortcut(script, name=self.name, folder=folder, icon=icon,
description=self.description,
terminal=(not self.is_wxapp))
Expand Down
2 changes: 1 addition & 1 deletion larch/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"""Version information"""

__release_version__ = '0.9.75'
__date__ = '2024-March-20'
__date__ = '2024-March-21'
__authors__ = "M. Newville, M. Rovezzi, M. Koker, B. Ravel, and others"

from ._version import __version__, __version_tuple__
Expand Down

0 comments on commit 509332b

Please sign in to comment.