Skip to content
Merged
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
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -387,15 +387,15 @@ jobs:
EXTRA_DEP_PACKAGES="clang-format-17"
CLANG_FORMAT_EXE=clang-format-17

- desc: latest releases gcc13 C++20 py3.12 avx2 exr3.3 ocio2.4
- desc: latest releases gcc13 C++20 py3.12 avx2 exr3.4 ocio2.4
nametag: linux-latest-releases
runner: ubuntu-24.04
cc_compiler: gcc-13
cxx_compiler: g++-13
cxx_std: 20
fmt_ver: 11.2.0
opencolorio_ver: v2.4.2
openexr_ver: v3.3.4
openexr_ver: v3.4-alpha
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Would be good to change the desc too to say exr3.4 I guess.

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

yes, good point, will do

pybind11_ver: v3.0.0
python_ver: "3.12"
simd: avx2,f16c
Expand All @@ -405,7 +405,7 @@ jobs:
OPENJPEG_VERSION=v2.5.3
PTEX_VERSION=v2.4.3
PUGIXML_VERSION=v1.15
WEBP_VERSION=v1.5.0
WEBP_VERSION=v1.6.0
FREETYPE_VERSION=VER-2-13-3
USE_OPENVDB=0
- desc: bleeding edge gcc14 C++23 py3.12 OCIO/libtiff/exr-main avx2
Expand Down
14 changes: 7 additions & 7 deletions INSTALL.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,11 @@ NEW or CHANGED MINIMUM dependencies since the last major release are **bold**.
* C++17 or higher (also builds with C++20 and C++23)
* The default build mode is C++17. This can be controlled by via the
CMake configuration flag: `-DCMAKE_CXX_STANDARD=20`, etc.
* Compilers: gcc 9.3 - 14.2, clang 5 - 19, MSVS 2017 - 2022 (v19.14
* Compilers: gcc 9.3 - 14.2, clang 5 - 20, MSVS 2017 - 2022 (v19.14
and up), Intel icc 19+, Intel OneAPI C++ compiler 2022+.
* CMake >= 3.18.2 (tested through 4.0)
* Imath >= 3.1 (tested through 3.1.x and main)
* OpenEXR >= 3.1 (tested through 3.3 and main)
* CMake >= 3.18.2 (tested through 4.1)
* Imath >= 3.1 (tested through 3.2 and main)
* OpenEXR >= 3.1 (tested through 3.4 and main)
* libTIFF >= 4.0 (tested through 4.7 and master)
* OpenColorIO >= 2.2 (tested through 2.4 and main)
* libjpeg >= 8 (tested through jpeg9e), or libjpeg-turbo >= 2.1 (tested
Expand Down Expand Up @@ -49,12 +49,12 @@ NEW or CHANGED MINIMUM dependencies since the last major release are **bold**.
* If you want support for camera "RAW" formats:
* LibRaw >= 0.20 (tested though 0.21.4 and master)
* If you want support for a wide variety of video formats:
* ffmpeg >= 4.0 (tested through 7.0)
* ffmpeg >= 4.0 (tested through 7.1)
* If you want support for jpeg 2000 images:
* OpenJpeg >= 2.0 (tested through 2.5.3; we recommend 2.4 or higher
for multithreading support)
* If you want support for OpenVDB files:
* OpenVDB >= 9.0 (tested through 12.0).
* OpenVDB >= 9.0 (tested through 12.1).
* If you want to use TBB as the thread pool:
* TBB >= 2018 (tested through 2021 and OneTBB)
* If you want support for converting to and from OpenCV data structures,
Expand All @@ -69,7 +69,7 @@ NEW or CHANGED MINIMUM dependencies since the last major release are **bold**.
* If you want support for DICOM medical image files:
* DCMTK >= 3.6.1 (tested through 3.6.9)
* If you want support for WebP images:
* WebP >= 1.1 (tested through 1.5)
* WebP >= 1.1 (tested through 1.6)
* If you want support for Ptex:
* Ptex >= 2.3.1 (probably works for older; tested through 2.4.3)
* If you want to be able to do font rendering into images:
Expand Down
Loading