Skip to content

Commit

Permalink
added shebang for python3 ; release 3.3
Browse files Browse the repository at this point in the history
  • Loading branch information
pat1 committed Jan 14, 2020
1 parent 0bea6a1 commit 6215ac2
Show file tree
Hide file tree
Showing 10 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion autoplayerd
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
# GPL. (C) 2013 Paolo Patruno.

Expand Down
2 changes: 1 addition & 1 deletion autoplayergui
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
# GPL. (C) 2013 Paolo Patruno.

Expand Down
2 changes: 1 addition & 1 deletion autoradio/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
_version_="3.2"
_version_="3.3"
2 changes: 1 addition & 1 deletion autoradioctrl
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/env python3
# GPL. (C) 2007-2009 Paolo Patruno.

# This program is free software; you can redistribute it and/or modify
Expand Down
2 changes: 1 addition & 1 deletion autoradiod
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/env python3
# GPL. (C) 2007-2012 Paolo Patruno.

# This program is free software; you can redistribute it and/or modify
Expand Down
2 changes: 1 addition & 1 deletion autoradiodbusd
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/python
#!/usr/bin/python3
# GPL. (C) 2007-2009 Paolo Patruno.

# This program is free software; you can redistribute it and/or modify
Expand Down
2 changes: 1 addition & 1 deletion autoradioweb
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/env python3
# GPL. (C) 2007-2009 Paolo Patruno.

# This program is free software; you can redistribute it and/or modify
Expand Down
2 changes: 1 addition & 1 deletion jackdaemon
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/python
#!/usr/bin/python3
# GPL. (C) 2007-2009 Paolo Patruno.

# This program is free software; you can redistribute it and/or modify
Expand Down
2 changes: 1 addition & 1 deletion manage.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/env python3
import os, sys

if __name__ == "__main__":
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -302,11 +302,11 @@ def run(self):
author_email='[email protected]',
platforms = ["any"],
url='http://autoradiobc.sf.net',
classifiers=(
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v2 (GPLv2)",
"Operating System :: OS Independent",
),
],
cmdclass={'build': build,'compilemessages':compilemessages,'createmanpages':createmanpages,"distclean":distclean,"haxecompileanoggplayer":haxecompileanoggplayer,"installbin":installbin,"buildall":buildall,"djangocollectstatic":djangocollectstatic},
packages=['autoradio', 'autoradio.playlists','autoradio.spots',
'autoradio.jingles', 'autoradio.programs',
Expand Down

0 comments on commit 6215ac2

Please sign in to comment.