From 6215ac20bd0a6c76d96f0a6455a8e812c4b53474 Mon Sep 17 00:00:00 2001 From: Paolo Patruno Date: Tue, 14 Jan 2020 19:38:55 +0100 Subject: [PATCH] added shebang for python3 ; release 3.3 --- autoplayerd | 2 +- autoplayergui | 2 +- autoradio/__init__.py | 2 +- autoradioctrl | 2 +- autoradiod | 2 +- autoradiodbusd | 2 +- autoradioweb | 2 +- jackdaemon | 2 +- manage.py | 2 +- setup.py | 4 ++-- 10 files changed, 11 insertions(+), 11 deletions(-) diff --git a/autoplayerd b/autoplayerd index f271833..96baa97 100755 --- a/autoplayerd +++ b/autoplayerd @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python3 # -*- coding: utf-8 -*- # GPL. (C) 2013 Paolo Patruno. diff --git a/autoplayergui b/autoplayergui index db6b285..52dfce1 100755 --- a/autoplayergui +++ b/autoplayergui @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python3 # -*- coding: utf-8 -*- # GPL. (C) 2013 Paolo Patruno. diff --git a/autoradio/__init__.py b/autoradio/__init__.py index 5024d89..2209d1d 100644 --- a/autoradio/__init__.py +++ b/autoradio/__init__.py @@ -1 +1 @@ -_version_="3.2" +_version_="3.3" diff --git a/autoradioctrl b/autoradioctrl index 1175fdf..69e1b92 100755 --- a/autoradioctrl +++ b/autoradioctrl @@ -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 diff --git a/autoradiod b/autoradiod index 66597fe..d8cbfcd 100755 --- a/autoradiod +++ b/autoradiod @@ -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 diff --git a/autoradiodbusd b/autoradiodbusd index 7cd1785..8ee04ba 100755 --- a/autoradiodbusd +++ b/autoradiodbusd @@ -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 diff --git a/autoradioweb b/autoradioweb index 75a397b..97c9360 100755 --- a/autoradioweb +++ b/autoradioweb @@ -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 diff --git a/jackdaemon b/jackdaemon index 3a816cf..0138865 100755 --- a/jackdaemon +++ b/jackdaemon @@ -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 diff --git a/manage.py b/manage.py index 23a9f58..a3881df 100755 --- a/manage.py +++ b/manage.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python3 import os, sys if __name__ == "__main__": diff --git a/setup.py b/setup.py index a298440..6b2fc51 100644 --- a/setup.py +++ b/setup.py @@ -302,11 +302,11 @@ def run(self): author_email='p.patruno@iperbole.bologna.it', 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',