From f049580e2b31310de4687c0be370d10b8ee9f196 Mon Sep 17 00:00:00 2001 From: Valentin Niess Date: Fri, 23 May 2025 18:29:24 +0200 Subject: [PATCH] Bump version: v1.4.3 --- .github/workflows/pypi.yml | 11 +++-------- pyproject.toml | 2 +- python_appimage/version.py | 2 +- 3 files changed, 5 insertions(+), 10 deletions(-) diff --git a/.github/workflows/pypi.yml b/.github/workflows/pypi.yml index 363c671..9d4ed80 100644 --- a/.github/workflows/pypi.yml +++ b/.github/workflows/pypi.yml @@ -1,15 +1,11 @@ name: PyPI on: - push: - branches: - - master - paths: - - 'python_appimage/version.py' workflow_dispatch: inputs: upload: description: 'Upload to PyPI' required: true + default: false type: boolean jobs: @@ -49,9 +45,8 @@ jobs: - name: Build wheel run: | - pip install -U pip - pip install -U wheel - python setup.py bdist_wheel --universal + pip install -U pip build + python -m build - name: Upload to PyPI if: (github.ref == 'refs/heads/master') && inputs.upload diff --git a/pyproject.toml b/pyproject.toml index f43098d..88fee0f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -41,7 +41,7 @@ include = ["python_appimage*"] version = {attr = "python_appimage.__version__"} [tool.bumpversion] -current_version = "1.4.2" +current_version = "1.4.3" parse = "(?P\\d+)\\.(?P\\d+)\\.(?P\\d+)" serialize = ["{major}.{minor}.{patch}"] search = "{current_version}" diff --git a/python_appimage/version.py b/python_appimage/version.py index 8a16224..50e4bb9 100644 --- a/python_appimage/version.py +++ b/python_appimage/version.py @@ -1 +1 @@ -version = '1.4.2' +version = '1.4.3'