From 73f79bf46cfbfee54c5f9472ad2002e822e8a879 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Milo=C5=A1=20Komar=C4=8Devi=C4=87?= Date: Sat, 26 Oct 2024 13:15:16 +0200 Subject: [PATCH 1/2] Update to libraw 0.21.3 --- external/LibRaw | 2 +- rawpy/_version.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/external/LibRaw b/external/LibRaw index 1ef7015..261c18c 160000 --- a/external/LibRaw +++ b/external/LibRaw @@ -1 +1 @@ -Subproject commit 1ef70158d7fde1ced6aaddb0b9443c32a7121d3d +Subproject commit 261c18ca0f1f9b83a53947b77751050d90d18e67 diff --git a/rawpy/_version.py b/rawpy/_version.py index 43e16f5..4709f8b 100644 --- a/rawpy/_version.py +++ b/rawpy/_version.py @@ -1 +1 @@ -__version__ = "0.23.1" +__version__ = "0.23.2" From a4bc94c119996131fe670523989a42588e181b37 Mon Sep 17 00:00:00 2001 From: Maik Riechert Date: Sat, 26 Oct 2024 17:30:58 +0100 Subject: [PATCH 2/2] linux: install setuptools (missing in 3.12) --- .github/scripts/build-linux.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/scripts/build-linux.sh b/.github/scripts/build-linux.sh index 92d58f1..4a01dfc 100755 --- a/.github/scripts/build-linux.sh +++ b/.github/scripts/build-linux.sh @@ -88,7 +88,7 @@ retry yum install -y libpng-devel freetype-devel retry yum install -y lapack-devel blas-devel # install compile-time dependencies -retry ${PYBIN}/pip install numpy==${NUMPY_VERSION} cython +retry ${PYBIN}/pip install numpy==${NUMPY_VERSION} cython setuptools # List installed packages ${PYBIN}/pip freeze