From 3b37faf8575d2946513f4f10c4e5827032e3a2cb Mon Sep 17 00:00:00 2001 From: Kashiko Koibumi Date: Fri, 17 May 2024 05:54:49 +0900 Subject: [PATCH] change command from python2.7 to python3 --- buildscripts/osx.sh | 2 +- packages/systemd/bitmessage.service | 2 +- src/bitmessagecli.py | 2 +- src/bitmessageqt/migrationwizard.py | 1 - src/bitmessageqt/settingsmixin.py | 1 - src/build_osx.py | 4 ++-- src/pybitmessage | 2 +- 7 files changed, 6 insertions(+), 8 deletions(-) diff --git a/buildscripts/osx.sh b/buildscripts/osx.sh index e58a49f4..25c646b5 100755 --- a/buildscripts/osx.sh +++ b/buildscripts/osx.sh @@ -16,7 +16,7 @@ echo "Creating OS X packages for Bitmessage." export PYBITMESSAGEVERSION=$1 -cd src && python2.7 build_osx.py py2app +cd src && python3 build_osx.py py2app if [[ $? = "0" ]]; then hdiutil create -fs HFS+ -volname "Bitmessage" -srcfolder dist/Bitmessage.app dist/bitmessage-v$1.dmg diff --git a/packages/systemd/bitmessage.service b/packages/systemd/bitmessage.service index 1a9f7f47..66f04a7d 100644 --- a/packages/systemd/bitmessage.service +++ b/packages/systemd/bitmessage.service @@ -3,7 +3,7 @@ Description=Bitmessage Daemon After=network.target auditd.service [Service] -ExecStart=/usr/bin/python2 /usr/src/PyBitmessage/src/bitmessagemain.py +ExecStart=/usr/bin/python3 /usr/src/PyBitmessage/src/bitmessagemain.py ExecReload=/bin/kill -HUP $MAINPID KillMode=process Restart=on-failure diff --git a/src/bitmessagecli.py b/src/bitmessagecli.py index 84c618af..10c8cd9b 100644 --- a/src/bitmessagecli.py +++ b/src/bitmessagecli.py @@ -1,4 +1,4 @@ -#!/usr/bin/python2.7 +#!/usr/bin/python3 # -*- coding: utf-8 -*- # pylint: disable=too-many-lines,global-statement,too-many-branches,too-many-statements,inconsistent-return-statements # pylint: disable=too-many-nested-blocks,too-many-locals,protected-access,too-many-arguments,too-many-function-args diff --git a/src/bitmessageqt/migrationwizard.py b/src/bitmessageqt/migrationwizard.py index 4187ae85..e51a0e69 100644 --- a/src/bitmessageqt/migrationwizard.py +++ b/src/bitmessageqt/migrationwizard.py @@ -1,4 +1,3 @@ -#!/usr/bin/env python2.7 from PyQt6 import QtGui, QtWidgets diff --git a/src/bitmessageqt/settingsmixin.py b/src/bitmessageqt/settingsmixin.py index 3cc8dc38..836e0220 100644 --- a/src/bitmessageqt/settingsmixin.py +++ b/src/bitmessageqt/settingsmixin.py @@ -1,4 +1,3 @@ -#!/usr/bin/python2.7 """ src/settingsmixin.py ==================== diff --git a/src/build_osx.py b/src/build_osx.py index d83e9b9b..922680d2 100644 --- a/src/build_osx.py +++ b/src/build_osx.py @@ -1,7 +1,7 @@ """Building osx.""" import os from glob import glob -from PyQt4 import QtCore +from PyQt6 import QtCore from setuptools import setup name = "Bitmessage" @@ -32,7 +32,7 @@ setup( setup_requires=["py2app"], options=dict( py2app=dict( - includes=['sip', 'PyQt4._qt'], + includes=['sip', 'PyQt6._qt'], iconfile="images/bitmessage.icns" ) ) diff --git a/src/pybitmessage b/src/pybitmessage index decebfff..46a8f75c 100644 --- a/src/pybitmessage +++ b/src/pybitmessage @@ -1,4 +1,4 @@ -#!/usr/bin/python2.7 +#!/usr/bin/python3 import os import pkg_resources