diff options
author | Fedja Beader <fedja@protonmail.ch> | 2023-12-12 21:26:41 +0100 |
---|---|---|
committer | Fedja Beader <fedja@protonmail.ch> | 2023-12-12 22:25:37 +0100 |
commit | 6bfc88d0b0613dab1b25de913311cbeedfff3132 (patch) | |
tree | ecee142136ca410299fa6b3f39c77fc11f286dc9 /demo-project/configure | |
parent | 635a136ec06c00efadc46a9d364f15d771f4036e (diff) | |
download | attobuild-6bfc88d0b0613dab1b25de913311cbeedfff3132.tar.gz attobuild-6bfc88d0b0613dab1b25de913311cbeedfff3132.tar.bz2 attobuild-6bfc88d0b0613dab1b25de913311cbeedfff3132.tar.xz attobuild-6bfc88d0b0613dab1b25de913311cbeedfff3132.zip |
Update README and demo project to python3
Update py2->py3 in README
Not strictly necessary, but use python3 directly + remove py2 compatibility line
Use python3 explicity. Debian (CI) does not have a python->python3 link?
Diffstat (limited to 'demo-project/configure')
-rwxr-xr-x | demo-project/configure | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/demo-project/configure b/demo-project/configure index 47022c2..61a2c2e 100755 --- a/demo-project/configure +++ b/demo-project/configure @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python3 # Copyright 2013 Ben Longbons <b.r.longbons@gmail.com> # @@ -17,8 +17,6 @@ # You should have received a copy of the GNU General Public License # along with attoconf. If not, see <http://www.gnu.org/licenses/>. -from __future__ import print_function, division, absolute_import - import os import sys |