From a44d68a8d5710754a7ce90522ae9e954e8d6282b Mon Sep 17 00:00:00 2001 From: Oleg Broytman Date: Fri, 16 Aug 2024 19:40:28 +0300 Subject: [PATCH] Build: Use Python 3 --- Makefile | 2 +- devscripts/mk-git-aliases | 2 +- setup.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index 0a80082..0cea611 100644 --- a/Makefile +++ b/Makefile @@ -6,7 +6,7 @@ # __license__ = "GNU GPL" # -VERSION=$(shell python setup.py --version) +VERSION=$(shell python3 setup.py --version) EXAMPLE_SHELL=\ bkmk-add bkmk-add.py bkmk-chk bkmk-publish bkmk-rsync bkmk-sort bkmk2db \ diff --git a/devscripts/mk-git-aliases b/devscripts/mk-git-aliases index 1891c89..803e367 100755 --- a/devscripts/mk-git-aliases +++ b/devscripts/mk-git-aliases @@ -6,4 +6,4 @@ git config --local alias.commit-with-message \ exec git config --local alias.tag-with-message \ "!GIT_EDITOR='vim -c \"source devscripts/get-commit-message.vim\"' \ - exec git tag -s \`python setup.py --version\`" + exec git tag -s \`python3 setup.py --version\`" diff --git a/setup.py b/setup.py index 5d1d216..b789bcb 100755 --- a/setup.py +++ b/setup.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python3 from setuptools import setup from bkmk_objects import __version__ -- 2.39.5