From: philipp Date: Sat, 23 May 2015 21:12:40 +0000 (+0000) Subject: Replaced shebang line from python2.7 to python3.4. X-Git-Url: https://git.toastfreeware.priv.at/philipp/winterrodeln/wrpylib.git/commitdiff_plain/bc655ea731d3c9d3f283ac2dd047f832c507acb5 Replaced shebang line from python2.7 to python3.4. git-svn-id: http://www.winterrodeln.org/svn/wrpylib/trunk@2267 7aebc617-e5e2-0310-91dc-80fb5f6d2477 --- diff --git a/setup.py b/setup.py index 990934a..5b60087 100644 --- a/setup.py +++ b/setup.py @@ -1,4 +1,4 @@ -#!/usr/bin/python2.7 +#!/usr/bin/python3.4 # -*- coding: iso-8859-15 -*- from setuptools import setup diff --git a/tests/test_mwdb.py b/tests/test_mwdb.py index 6edbfce..553d8c8 100644 --- a/tests/test_mwdb.py +++ b/tests/test_mwdb.py @@ -1,4 +1,4 @@ -#!/usr/bin/python2.7 +#!/usr/bin/python3.4 # -*- coding: iso-8859-15 -*- import unittest import wrpylib.mwdb diff --git a/tests/test_mwmarkup.py b/tests/test_mwmarkup.py index c3a771e..a744bfa 100644 --- a/tests/test_mwmarkup.py +++ b/tests/test_mwmarkup.py @@ -1,4 +1,4 @@ -#!/usr/bin/python2.7 +#!/usr/bin/python3.4 # -*- coding: iso-8859-15 -*- import wrpylib.mwmarkup import unittest diff --git a/tests/test_mysqlpython.py b/tests/test_mysqlpython.py index 7a069e4..488d89e 100644 --- a/tests/test_mysqlpython.py +++ b/tests/test_mysqlpython.py @@ -1,4 +1,4 @@ -#!/usr/bin/python2.7 +#!/usr/bin/python3.4 # -*- coding: iso-8859-15 -*- # Note: Many of those tests fail in MySQL_python version 1.2.3 and earlier # because byte strings are returned instead of unicode for columns having diff --git a/tests/test_sqlalchemy.py b/tests/test_sqlalchemy.py index 98cf472..997b8f3 100644 --- a/tests/test_sqlalchemy.py +++ b/tests/test_sqlalchemy.py @@ -1,4 +1,4 @@ -#!/usr/bin/python2.7 +#!/usr/bin/python3.4 # -*- coding: iso-8859-15 -*- import types from sqlalchemy import schema diff --git a/tests/test_wrmwcache.py b/tests/test_wrmwcache.py index 951d146..40996ce 100644 --- a/tests/test_wrmwcache.py +++ b/tests/test_wrmwcache.py @@ -1,4 +1,4 @@ -#!/usr/bin/python2.7 +#!/usr/bin/python3.4 # -*- coding: iso-8859-15 -*- from sqlalchemy.engine import create_engine from wrpylib import wrmwcache diff --git a/tests/test_wrmwdb.py b/tests/test_wrmwdb.py index 9360120..72929ea 100644 --- a/tests/test_wrmwdb.py +++ b/tests/test_wrmwdb.py @@ -1,4 +1,4 @@ -#!/usr/bin/python2.7 +#!/usr/bin/python3.4 # -*- coding: iso-8859-15 -*- import wrpylib.wrmwdb import sqlalchemy diff --git a/tests/test_wrmwmarkup.py b/tests/test_wrmwmarkup.py index d480822..bbbca5c 100644 --- a/tests/test_wrmwmarkup.py +++ b/tests/test_wrmwmarkup.py @@ -1,4 +1,4 @@ -#!/usr/bin/python2.7 +#!/usr/bin/python3.4 # -*- coding: iso-8859-15 -*- import collections import wrpylib.wrmwmarkup diff --git a/tests/test_wrvalidators.py b/tests/test_wrvalidators.py index 0e45b68..a397e3d 100644 --- a/tests/test_wrvalidators.py +++ b/tests/test_wrvalidators.py @@ -1,4 +1,4 @@ -#!/usr/bin/python2.7 +#!/usr/bin/python3.4 # -*- coding: iso-8859-15 -*- import collections import wrpylib.wrvalidators diff --git a/wrpylib/mwapi.py b/wrpylib/mwapi.py index beb0965..a4af31d 100644 --- a/wrpylib/mwapi.py +++ b/wrpylib/mwapi.py @@ -1,4 +1,4 @@ -#!/usr/bin/python2.7 +#!/usr/bin/python3.4 # -*- coding: iso-8859-15 -*- # $Id$ # $HeadURL$ diff --git a/wrpylib/mwdb.py b/wrpylib/mwdb.py index 106bea4..01f3845 100644 --- a/wrpylib/mwdb.py +++ b/wrpylib/mwdb.py @@ -1,4 +1,4 @@ -#!/usr/bin/python2.7 +#!/usr/bin/python3.4 # -*- coding: iso-8859-15 -*- # $Id$ # $HeadURL$ diff --git a/wrpylib/mwmarkup.py b/wrpylib/mwmarkup.py index ce78170..572b30c 100644 --- a/wrpylib/mwmarkup.py +++ b/wrpylib/mwmarkup.py @@ -1,4 +1,4 @@ -#!/usr/bin/python2.7 +#!/usr/bin/python3.4 # -*- coding: iso-8859-15 -*- # $Id$ # $HeadURL$ diff --git a/wrpylib/wrmwcache.py b/wrpylib/wrmwcache.py index 6f29e2b..411d7b8 100644 --- a/wrpylib/wrmwcache.py +++ b/wrpylib/wrmwcache.py @@ -1,4 +1,4 @@ -#!/usr/bin/python2.7 +#!/usr/bin/python3.4 # -*- coding: iso-8859-15 -*- # $Id$ # $HeadURL$ diff --git a/wrpylib/wrmwdb.py b/wrpylib/wrmwdb.py index 7c6c1da..8b8ceed 100644 --- a/wrpylib/wrmwdb.py +++ b/wrpylib/wrmwdb.py @@ -1,4 +1,4 @@ -#!/usr/bin/python2.7 +#!/usr/bin/python3.4 # -*- coding: iso-8859-15 -*- # $Id$ # $HeadURL$ diff --git a/wrpylib/wrmwmarkup.py b/wrpylib/wrmwmarkup.py index 0c087ff..bc72a39 100644 --- a/wrpylib/wrmwmarkup.py +++ b/wrpylib/wrmwmarkup.py @@ -1,4 +1,4 @@ -#!/usr/bin/python2.7 +#!/usr/bin/python3.4 # -*- coding: iso-8859-15 -*- # $Id$ # $HeadURL$ diff --git a/wrpylib/wrvalidators.py b/wrpylib/wrvalidators.py index 62b9915..468cb71 100644 --- a/wrpylib/wrvalidators.py +++ b/wrpylib/wrvalidators.py @@ -1,4 +1,4 @@ -#!/usr/bin/python2.7 +#!/usr/bin/python3.4 # -*- coding: iso-8859-15 -*- # $Id$ # $HeadURL$