From 69f8aa0ea5bd6744e509251b8d9e150bf62b00ad Mon Sep 17 00:00:00 2001 From: Sam James Date: Mon, 7 Aug 2023 01:02:35 +0100 Subject: Modernise shebang Signed-off-by: Sam James --- bin/mirrorselect | 5 ++--- mirrorselect/main.py | 5 ++--- mirrorselect/output.py | 4 ++-- mirrorselect/selectors.py | 5 ++--- mirrorselect/version.py | 6 ++---- setup.py | 4 +--- 6 files changed, 11 insertions(+), 18 deletions(-) diff --git a/bin/mirrorselect b/bin/mirrorselect index 3474935..7f019e3 100755 --- a/bin/mirrorselect +++ b/bin/mirrorselect @@ -1,10 +1,9 @@ -#!/usr/bin/env python - +#!/usr/bin/env python3 """Mirrorselect 2.x Tool for selecting Gentoo source and rsync mirrors. -Copyright 2005-2012 Gentoo Foundation +Copyright 2005-2023 Gentoo Authors Copyright (C) 2005 Colin Kingsley Copyright (C) 2008 Zac Medico diff --git a/mirrorselect/main.py b/mirrorselect/main.py index 21f7e24..f003b8c 100755 --- a/mirrorselect/main.py +++ b/mirrorselect/main.py @@ -1,10 +1,9 @@ -#!/usr/bin/env python - +#!/usr/bin/env python3 """Mirrorselect 2.x Tool for selecting Gentoo source and rsync mirrors. -Copyright 2005-2012 Gentoo Foundation +Copyright 2005-2023 Gentoo Authors Copyright (C) 2005 Colin Kingsley Copyright (C) 2008 Zac Medico diff --git a/mirrorselect/output.py b/mirrorselect/output.py index c2fdd12..aa679cb 100644 --- a/mirrorselect/output.py +++ b/mirrorselect/output.py @@ -1,9 +1,9 @@ -#!/usr/bin/env python +#!/usr/bin/env python3 """Mirrorselect 2.x Tool for selecting Gentoo source and rsync mirrors. -Copyright 2005-2012 Gentoo Foundation +Copyright 2005-2023 Gentoo Authors Copyright (C) 2005 Colin Kingsley Copyright (C) 2008 Zac Medico diff --git a/mirrorselect/selectors.py b/mirrorselect/selectors.py index df66cc4..9647e56 100644 --- a/mirrorselect/selectors.py +++ b/mirrorselect/selectors.py @@ -1,10 +1,9 @@ -#!/usr/bin/env python -#-*- coding:utf-8 -*- +#!/usr/bin/env python3 """Mirrorselect 2.x Tool for selecting Gentoo source and rsync mirrors. -Copyright 2005-2012 Gentoo Foundation +Copyright 2005-2023 Gentoo Authors Copyright (C) 2005 Colin Kingsley Copyright (C) 2008 Zac Medico diff --git a/mirrorselect/version.py b/mirrorselect/version.py index c8216df..dadd00b 100644 --- a/mirrorselect/version.py +++ b/mirrorselect/version.py @@ -1,11 +1,9 @@ -#!/usr/bin/env python -#-*- coding:utf-8 -*- - +#!/usr/bin/env python3 """Mirrorselect 2.x Tool for selecting Gentoo source and rsync mirrors. -Copyright 2012-2019 Gentoo Authors +Copyright 2012-2023 Gentoo Authors Copyright (C) 2012 Brian Dolbec diff --git a/setup.py b/setup.py index 3c701a1..770d93d 100755 --- a/setup.py +++ b/setup.py @@ -1,6 +1,4 @@ -#!/usr/bin/env python -# coding: utf-8 - +#!/usr/bin/env python3 import logging import re -- cgit v1.2.3-65-gdbad