Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -460,7 +460,7 @@ jobs:
simd: avx2,f16c
setenvs: export LIBJPEGTURBO_VERSION=3.1.2
LIBPNG_VERSION=v1.6.50
LIBRAW_VERSION=0.21.4
LIBRAW_VERSION=0.21.5
LIBTIFF_VERSION=v4.7.1
OPENJPEG_VERSION=v2.5.4
PTEX_VERSION=v2.5.0
Expand Down Expand Up @@ -513,7 +513,7 @@ jobs:
simd: avx2,f16c
setenvs: export OpenImageIO_BUILD_LOCAL_DEPS=all
OpenImageIO_DEPENDENCY_BUILD_VERBOSE=ON
LIBRAW_VERSION=0.21.4
LIBRAW_VERSION=0.21.5
PTEX_VERSION=v2.4.2
PUGIXML_VERSION=v1.14
WEBP_VERSION=v1.4.0
Expand Down Expand Up @@ -543,7 +543,7 @@ jobs:
python_ver: "3.12"
setenvs: export LIBJPEGTURBO_VERSION=3.1.2
LIBPNG_VERSION=v1.6.50
LIBRAW_VERSION=0.21.4
LIBRAW_VERSION=0.21.5
LIBTIFF_VERSION=v4.7.1
OPENJPEG_VERSION=v2.5.4
PTEX_VERSION=v2.4.3
Expand All @@ -564,7 +564,7 @@ jobs:
python_ver: "3.12"
setenvs: export LIBJPEGTURBO_VERSION=3.1.2
LIBPNG_VERSION=v1.6.50
LIBRAW_VERSION=0.21.4
LIBRAW_VERSION=0.21.5
LIBTIFF_VERSION=v4.7.1
OPENJPEG_VERSION=v2.5.4
PTEX_VERSION=v2.4.3
Expand Down
2 changes: 1 addition & 1 deletion INSTALL.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ NEW or CHANGED MINIMUM dependencies since the last major release are **bold**.
* If you want support for PNG files:
* libPNG >= 1.6.0 (tested though 1.6.50)
* If you want support for camera "RAW" formats:
* LibRaw >= 0.20 (tested though 0.21.4 and master)
* LibRaw >= 0.20 (tested though 0.21.5 and master)
* If you want support for a wide variety of video formats:
* ffmpeg >= 4.0 (tested through 8.0)
* If you want support for jpeg 2000 images:
Expand Down
2 changes: 1 addition & 1 deletion src/build-scripts/build_libraw.bash
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ set -ex

# Which LibRaw to retrieve, how to build it
LIBRAW_REPO=${LIBRAW_REPO:=https://github.com/LibRaw/LibRaw.git}
LIBRAW_VERSION=${LIBRAW_VERSION:=0.21.4}
LIBRAW_VERSION=${LIBRAW_VERSION:=0.21.5}

# Where to install the final results
LOCAL_DEPS_DIR=${LOCAL_DEPS_DIR:=${PWD}/ext}
Expand Down
Loading