From 04d0c1aeb2defca3307036b294cb5675148689b0 Mon Sep 17 00:00:00 2001 From: Christopher Schwan Date: Fri, 23 Feb 2024 17:52:01 +0100 Subject: [PATCH] Fix wrong Python 3.6 specification --- .github/workflows/release.yml | 3 +++ CHANGELOG.md | 5 +++++ 2 files changed, 8 insertions(+) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 14a0360a..74133016 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -169,6 +169,9 @@ jobs: pineappl_py/Cargo.toml # the previous command is very fragile, so print the file contents to check it cat pineappl_py/Cargo.toml + sed -i \ + -e "s/requires-python[[:space:]]*=[[:space:]]*\"[^\"]*\"/requires-python = \">=3.6\"/" \ + pineappl_py/pyproject.toml - name: Build wheels uses: PyO3/maturin-action@v1 with: diff --git a/CHANGELOG.md b/CHANGELOG.md index 3f2a7e56..c4764538 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +### Fixed + +- fixed a problem that prevent the Python interface for Python 3.6 from being + successfully installed + ## [0.7.2] - 23/02/2024 ### Fixed