[Getan-commits] [PATCH 2 of 5] Changed Hashbangs to python3
Wald Commits
scm-commit at wald.intevation.org
Thu Jun 28 16:29:44 CEST 2018
# HG changeset patch
# User Magnus Schieder <mschieder at intevation.de>
# Date 1530093296 -7200
# Node ID 999a438474f26d8e2568d82d4e98c36f7761e981
# Parent 62373fad96ebc6ee53f6fc95ceeb905888258edb
Changed Hashbangs to python3.
diff -r 62373fad96eb -r 999a438474f2 getan.py
--- a/getan.py Wed Jun 27 11:43:11 2018 +0200
+++ b/getan.py Wed Jun 27 11:54:56 2018 +0200
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python3
# -*- coding: utf-8 -*-
#
# (c) 2010 by Ingo Weinzierl <ingo.weinzierl at intevation.de>
diff -r 62373fad96eb -r 999a438474f2 getan/config.py
--- a/getan/config.py Wed Jun 27 11:43:11 2018 +0200
+++ b/getan/config.py Wed Jun 27 11:54:56 2018 +0200
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python3
# -*- coding: utf-8 -*-
#
# (c) 2010 by Ingo Weinzierl <ingo.weinzierl at intevation.de>
diff -r 62373fad96eb -r 999a438474f2 getan/main.py
--- a/getan/main.py Wed Jun 27 11:43:11 2018 +0200
+++ b/getan/main.py Wed Jun 27 11:54:56 2018 +0200
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python3
# -*- coding: utf-8 -*-
#
# (c) 2010 by Ingo Weinzierl <ingo.weinzierl at intevation.de>
diff -r 62373fad96eb -r 999a438474f2 getan/project.py
--- a/getan/project.py Wed Jun 27 11:43:11 2018 +0200
+++ b/getan/project.py Wed Jun 27 11:54:56 2018 +0200
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python3
# -*- coding: utf-8 -*-
#
# (c) 2008, 2009, 2010 by
diff -r 62373fad96eb -r 999a438474f2 getan/states.py
--- a/getan/states.py Wed Jun 27 11:43:11 2018 +0200
+++ b/getan/states.py Wed Jun 27 11:54:56 2018 +0200
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python3
# -*- coding: utf-8 -*-
#
# (c) 2010 by Ingo Weinzierl <ingo.weinzierl at intevation.de>
diff -r 62373fad96eb -r 999a438474f2 scripts/getan-eval.py
--- a/scripts/getan-eval.py Wed Jun 27 11:43:11 2018 +0200
+++ b/scripts/getan-eval.py Wed Jun 27 11:54:56 2018 +0200
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python3
# -*- coding: utf-8 -*-
#
# (c) 2013, 2014 by Björn Ricks <bjoern.ricks at intevation.de>
diff -r 62373fad96eb -r 999a438474f2 scripts/zeitsort.py
--- a/scripts/zeitsort.py Wed Jun 27 11:43:11 2018 +0200
+++ b/scripts/zeitsort.py Wed Jun 27 11:54:56 2018 +0200
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python3
# -*- coding: utf-8 -*-
#
# zeitsort
diff -r 62373fad96eb -r 999a438474f2 setup.py
--- a/setup.py Wed Jun 27 11:43:11 2018 +0200
+++ b/setup.py Wed Jun 27 11:54:56 2018 +0200
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python3
# -*- coding: utf-8 -*-
#
# (c) 2011, 2014 by Björn Ricks <bjoern.ricks at intevation.de>
@@ -40,6 +40,7 @@
license="GPLv3+",
long_description=read("README"),
packages=find_packages(),
+ python_requires='>=3',
package_data={
"": ["*.txt"],
"getan": ["templates/*"],
More information about the Getan-commits
mailing list