From b3358add7761076c391e9c6e7c61f1881b375b56 Mon Sep 17 00:00:00 2001 From: NanoNabla <43477372+NanoNabla@users.noreply.github.com> Date: Mon, 24 Nov 2025 13:04:08 +0100 Subject: [PATCH 1/3] Updates _version.py --- scorep/_version.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scorep/_version.py b/scorep/_version.py index ecdb1ce..9faa2c2 100644 --- a/scorep/_version.py +++ b/scorep/_version.py @@ -1 +1 @@ -__version__ = "4.4.0" +__version__ = "4.5.0" From 5580ad7e61de455a486f8e87ede58c3a5ebe0e47 Mon Sep 17 00:00:00 2001 From: NanoNabla <43477372+NanoNabla@users.noreply.github.com> Date: Thu, 27 Nov 2025 11:04:11 +0100 Subject: [PATCH 2/3] Fixes publish.yml --- .github/workflows/publish.yml | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 22b019e..58925a7 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -1,4 +1,4 @@ -name: Publishing on PyPi +name: Publishing on PyPI on: release: types: [published] @@ -8,18 +8,18 @@ jobs: name: Publish Python 🐍 distributions 📦 to PyPI runs-on: ubuntu-latest steps: - - uses: actions/checkout@master + - uses: actions/checkout@v4 - - name: Set up Python 3.8 - uses: actions/setup-python@v4 + - name: Set up Python 3.9 + uses: actions/setup-python@v5 with: - python-version: 3.8 + python-version: 3.9 - name: Check Version run: test ${{ github.event.release.tag_name }} = `python -c "import scorep._version; print('v'+scorep._version.__version__)"` - name: Add Score-P repo - run: sudo add-apt-repository ppa:andreasgocht/scorep + run: sudo add-apt-repository ppa:score-p/releases - name: Install Score-P run: sudo apt-get -y install scorep @@ -31,11 +31,13 @@ jobs: run: >- python -m pip install build --user + - name: Build a source tarball run: >- python -m build --sdist --outdir dist/ . + - name: Publish distribution 📦 to PyPI - uses: pypa/gh-action-pypi-publish@master + uses: pypa/gh-action-pypi-publish@release/v1 with: password: ${{ secrets.PYPI_API_TOKEN }} From 30aab9c7cf8713eb7552cf7ced5999ce15138b80 Mon Sep 17 00:00:00 2001 From: NanoNabla <43477372+NanoNabla@users.noreply.github.com> Date: Thu, 27 Nov 2025 11:39:10 +0100 Subject: [PATCH 3/3] Updates _version.py --- scorep/_version.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scorep/_version.py b/scorep/_version.py index 9faa2c2..f9f7166 100644 --- a/scorep/_version.py +++ b/scorep/_version.py @@ -1 +1 @@ -__version__ = "4.5.0" +__version__ = "4.5.1"