From dd5824f26787f2143855fb29898b66f79b3c98bd Mon Sep 17 00:00:00 2001 From: Sitt Guruvanich Date: Sun, 8 Dec 2024 17:18:12 +0700 Subject: [PATCH] refactor: up shbangs to minimum supported python --- src/arise/__init__.py | 2 +- src/arise/commands/__init__.py | 2 +- src/arise/commands/auth.py | 2 +- src/arise/commands/build.py | 2 +- src/arise/commands/clean.py | 2 +- src/arise/commands/dashboard.py | 2 +- src/arise/commands/deploy.py | 2 +- src/arise/commands/pull.py | 2 +- src/arise/configs.py | 2 +- src/arise/core.py | 2 +- src/arise/shadows/__init__.py | 2 +- src/arise/shadows/bellion.py | 2 +- src/arise/shadows/igris.py | 2 +- src/arise/shadows/tusk.py | 2 +- src/arise/types/__init__.py | 2 +- src/arise/types/blockchain_info.py | 2 +- src/arise/types/build.py | 2 +- src/arise/types/chain.py | 2 +- src/arise/types/difficulty_adjustment.py | 2 +- src/arise/types/mempool_info.py | 2 +- src/arise/types/service.py | 2 +- 21 files changed, 21 insertions(+), 21 deletions(-) diff --git a/src/arise/__init__.py b/src/arise/__init__.py index fffd5ce..6ce3d8a 100644 --- a/src/arise/__init__.py +++ b/src/arise/__init__.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python3.8 +#!/usr/bin/env python3.9 # coding:utf-8 # Copyright (C) 2024 All rights reserved. # FILENAME: ~~/src/arise/__init__.py diff --git a/src/arise/commands/__init__.py b/src/arise/commands/__init__.py index f1373d6..d9eae39 100644 --- a/src/arise/commands/__init__.py +++ b/src/arise/commands/__init__.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python3.8 +#!/usr/bin/env python3.9 # coding:utf-8 # Copyright (C) 2024 All rights reserved. # FILENAME: ~~/src/arise/commands/__init__.py diff --git a/src/arise/commands/auth.py b/src/arise/commands/auth.py index d286c8e..d144b4d 100644 --- a/src/arise/commands/auth.py +++ b/src/arise/commands/auth.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python3.8 +#!/usr/bin/env python3.9 # coding:utf-8 # Copyright (C) 2024 All rights reserved. # FILENAME: ~~/src/arise/commands/auth.py diff --git a/src/arise/commands/build.py b/src/arise/commands/build.py index d72a64d..cf2a652 100644 --- a/src/arise/commands/build.py +++ b/src/arise/commands/build.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python3.8 +#!/usr/bin/env python3.9 # coding:utf-8 # Copyright (C) 2024 All rights reserved. # FILENAME: ~~/src/arise/commands/build.py diff --git a/src/arise/commands/clean.py b/src/arise/commands/clean.py index 07a0243..0a3bfd0 100644 --- a/src/arise/commands/clean.py +++ b/src/arise/commands/clean.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python3.8 +#!/usr/bin/env python3.9 # coding:utf-8 # Copyright (C) 2024 All rights reserved. # FILENAME: ~~/src/arise/commands/clean.py diff --git a/src/arise/commands/dashboard.py b/src/arise/commands/dashboard.py index 110fb48..121d567 100644 --- a/src/arise/commands/dashboard.py +++ b/src/arise/commands/dashboard.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python3.8 +#!/usr/bin/env python3.9 # coding:utf-8 # Copyright (C) 2024 All rights reserved. # FILENAME: ~~/src/arise/commands/mine.py diff --git a/src/arise/commands/deploy.py b/src/arise/commands/deploy.py index c84ce27..d5d3707 100644 --- a/src/arise/commands/deploy.py +++ b/src/arise/commands/deploy.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python3.8 +#!/usr/bin/env python3.9 # coding:utf-8 # Copyright (C) 2024 All rights reserved. # FILENAME: ~~/src/arise/commands/deploy.py diff --git a/src/arise/commands/pull.py b/src/arise/commands/pull.py index ca5ff07..9b2c7bf 100644 --- a/src/arise/commands/pull.py +++ b/src/arise/commands/pull.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python3.8 +#!/usr/bin/env python3.9 # coding:utf-8 # Copyright (C) 2024 All rights reserved. # FILENAME: ~~/src/arise/commands/pull.py diff --git a/src/arise/configs.py b/src/arise/configs.py index b40a8e8..f622202 100644 --- a/src/arise/configs.py +++ b/src/arise/configs.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python3.8 +#!/usr/bin/env python3.9 # coding:utf-8 # Copyright (C) 2024 All rights reserved. # FILENAME: ~~/src/arise/configs.py diff --git a/src/arise/core.py b/src/arise/core.py index 4c1e8ce..24f5ba6 100644 --- a/src/arise/core.py +++ b/src/arise/core.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python3.8 +#!/usr/bin/env python3.9 # coding:utf-8 # Copyright (C) 2024 All rights reserved. # FILENAME: ~~/src/arise/core.py diff --git a/src/arise/shadows/__init__.py b/src/arise/shadows/__init__.py index 6c0395e..a646a20 100644 --- a/src/arise/shadows/__init__.py +++ b/src/arise/shadows/__init__.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python3.8 +#!/usr/bin/env python3.9 # coding:utf-8 # Copyright (C) 2024 All rights reserved. # FILENAME: ~~/src/arise/shadows/__init__.py diff --git a/src/arise/shadows/bellion.py b/src/arise/shadows/bellion.py index 01e1361..fe58a24 100644 --- a/src/arise/shadows/bellion.py +++ b/src/arise/shadows/bellion.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python3.8 +#!/usr/bin/env python3.9 # coding:utf-8 # Copyright (C) 2024 All rights reserved. # FILENAME: ~~/src/arise/shadows/bellion.py diff --git a/src/arise/shadows/igris.py b/src/arise/shadows/igris.py index e30dfad..4fcee63 100644 --- a/src/arise/shadows/igris.py +++ b/src/arise/shadows/igris.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python3.8 +#!/usr/bin/env python3.9 # coding:utf-8 # Copyright (C) 2024 All rights reserved. # FILENAME: ~~/src/arise/shadows/igris.py diff --git a/src/arise/shadows/tusk.py b/src/arise/shadows/tusk.py index 6ca5a85..1a2514f 100644 --- a/src/arise/shadows/tusk.py +++ b/src/arise/shadows/tusk.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python3.8 +#!/usr/bin/env python3.9 # coding:utf-8 # Copyright (C) 2024 All rights reserved. # FILENAME: ~~/src/florent/views/flame.py diff --git a/src/arise/types/__init__.py b/src/arise/types/__init__.py index e82c18f..cab8da9 100644 --- a/src/arise/types/__init__.py +++ b/src/arise/types/__init__.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python3.8 +#!/usr/bin/env python3.9 # coding:utf-8 # Copyright (C) 2024 All rights reserved. # FILENAME: ~~/src/arise/types/__init__.py diff --git a/src/arise/types/blockchain_info.py b/src/arise/types/blockchain_info.py index b96af8f..233295f 100644 --- a/src/arise/types/blockchain_info.py +++ b/src/arise/types/blockchain_info.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python3.8 +#!/usr/bin/env python3.9 # coding:utf-8 # Copyright (C) 2024 All rights reserved. # FILENAME: ~~/src/arise/types/blockchain_info.py diff --git a/src/arise/types/build.py b/src/arise/types/build.py index fdf5eae..34b0053 100644 --- a/src/arise/types/build.py +++ b/src/arise/types/build.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python3.8 +#!/usr/bin/env python3.9 # coding:utf-8 # Copyright (C) 2024 All rights reserved. # FILENAME: ~~/src/arise/types/build_enum.py diff --git a/src/arise/types/chain.py b/src/arise/types/chain.py index 27a1f76..3505139 100644 --- a/src/arise/types/chain.py +++ b/src/arise/types/chain.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python3.8 +#!/usr/bin/env python3.9 # coding:utf-8 # Copyright (C) 2024 All rights reserved. # FILENAME: ~~/src/arise/types/chain.py diff --git a/src/arise/types/difficulty_adjustment.py b/src/arise/types/difficulty_adjustment.py index 99a161b..1931f08 100644 --- a/src/arise/types/difficulty_adjustment.py +++ b/src/arise/types/difficulty_adjustment.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python3.8 +#!/usr/bin/env python3.9 # coding:utf-8 # Copyright (C) 2024 All rights reserved. # FILENAME: ~~/src/arise/types/difficulty_adjustment.py diff --git a/src/arise/types/mempool_info.py b/src/arise/types/mempool_info.py index 643cd68..b002b45 100644 --- a/src/arise/types/mempool_info.py +++ b/src/arise/types/mempool_info.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python3.8 +#!/usr/bin/env python3.9 # coding:utf-8 # Copyright (C) 2024 All rights reserved. # FILENAME: ~~/src/arise/types/blockchain_info.py diff --git a/src/arise/types/service.py b/src/arise/types/service.py index 80a9f29..c13d48f 100644 --- a/src/arise/types/service.py +++ b/src/arise/types/service.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python3.8 +#!/usr/bin/env python3.9 # coding:utf-8 # Copyright (C) 2024 All rights reserved. # FILENAME: ~~/src/arise/types/service.py