From 0476fa5106c889f73869aa607022d446b25ef2d4 Mon Sep 17 00:00:00 2001 From: Dobiasd Date: Tue, 16 Apr 2024 16:12:50 +0200 Subject: [PATCH] Update FunctionalPlus to version 0.2.24 --- .github/workflows/ci.yml | 2 +- INSTALL.md | 2 +- conanfile.txt | 2 +- test/Dockerfile | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 7b335b92..ecc56593 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -19,7 +19,7 @@ jobs: echo "Version numbers of TensorFlow and Keras:" python3 -c "import tensorflow as tf; import tensorflow.keras; print(tf.__version__)" # FunctionalPlus - git clone -b 'v0.2.23' --single-branch --depth 1 https://github.com/Dobiasd/FunctionalPlus + git clone -b 'v0.2.24' --single-branch --depth 1 https://github.com/Dobiasd/FunctionalPlus cd FunctionalPlus mkdir -p build && cd build cmake .. diff --git a/INSTALL.md b/INSTALL.md index b5dbfef9..29a3b840 100644 --- a/INSTALL.md +++ b/INSTALL.md @@ -7,7 +7,7 @@ Installation You can install frugally-deep using cmake as shown below, or (if you prefer) download the [code](https://github.com/Dobiasd/frugally-deep/archive/master.zip) (and the [code](https://github.com/Dobiasd/FunctionalPlus/archive/master.zip) of [FunctionalPlus](https://github.com/Dobiasd/FunctionalPlus)), extract it and tell your compiler to use the `include` directories. ``` -git clone -b 'v0.2.23' --single-branch --depth 1 https://github.com/Dobiasd/FunctionalPlus +git clone -b 'v0.2.24' --single-branch --depth 1 https://github.com/Dobiasd/FunctionalPlus cd FunctionalPlus mkdir -p build && cd build cmake .. diff --git a/conanfile.txt b/conanfile.txt index 45a2bcee..62a44499 100644 --- a/conanfile.txt +++ b/conanfile.txt @@ -1,6 +1,6 @@ [requires] eigen/3.4.0 -functionalplus/v0.2.23 +functionalplus/v0.2.24 nlohmann_json/3.11.3 [generators] diff --git a/test/Dockerfile b/test/Dockerfile index e5b98fc0..f5f9d65f 100644 --- a/test/Dockerfile +++ b/test/Dockerfile @@ -29,7 +29,7 @@ RUN ./bazel-bin/tensorflow/tools/pip_package/build_pip_package /tmp/tensorflow_p RUN pip install /tmp/tensorflow_pkg/tensorflow-2.16.1-cp310-cp310-linux_x86_64.whl WORKDIR / -RUN git clone -b 'v0.2.23' --single-branch --depth 1 https://github.com/Dobiasd/FunctionalPlus && cd FunctionalPlus && mkdir -p build && cd build && cmake .. && make && make install +RUN git clone -b 'v0.2.24' --single-branch --depth 1 https://github.com/Dobiasd/FunctionalPlus && cd FunctionalPlus && mkdir -p build && cd build && cmake .. && make && make install RUN git clone -b '3.4.0' --single-branch --depth 1 https://gitlab.com/libeigen/eigen.git && cd eigen && mkdir -p build && cd build && cmake .. && make && make install && ln -s /usr/local/include/eigen3/Eigen /usr/local/include/Eigen RUN git clone -b 'v3.11.3' --single-branch --depth 1 https://github.com/nlohmann/json && cd json && mkdir -p build && cd build && cmake -DJSON_BuildTests=OFF .. && make && make install