Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

V0.8.2 #236

Merged
merged 2 commits into from
Sep 13, 2024
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 ci-utils/install_prereq_linux.sh
Original file line number Diff line number Diff line change
Expand Up @@ -132,9 +132,9 @@ if [[ $BUILD_Z5_DEP -eq 1 ]]; then
make install/fast
cd ../../

curl -L https://github.com/constantinpape/z5/archive/refs/tags/2.0.16.zip -o 2.0.16.zip
unzip 2.0.16.zip
cd z5-2.0.16
curl -L https://github.com/constantinpape/z5/archive/refs/tags/2.0.18.zip -o 2.0.18.zip
unzip 2.0.18.zip
cd z5-2.0.18
mkdir build_man
cd build_man
cmake -DCMAKE_INSTALL_PREFIX=../../"$LOCAL_INSTALL_DIR"/ -DCMAKE_PREFIX_PATH=../../"$LOCAL_INSTALL_DIR"/ -DWITH_BLOSC=ON -DBUILD_Z5PY=OFF ..
Expand Down
6 changes: 3 additions & 3 deletions ci-utils/install_prereq_win.bat
Original file line number Diff line number Diff line change
Expand Up @@ -106,9 +106,9 @@ if "%BUILD_Z5_DEP%" == "1" (
popd
popd

curl -L https://github.com/constantinpape/z5/archive/refs/tags/2.0.16.zip -o 2.0.16.zip
tar -xf 2.0.16.zip
pushd z5-2.0.16
curl -L https://github.com/constantinpape/z5/archive/refs/tags/2.0.18.zip -o 2.0.18.zip
tar -xf 2.0.18.zip
pushd z5-2.0.18
mkdir build_man
pushd build_man
cmake -DCMAKE_INSTALL_PREFIX=../../local_install/ -DCMAKE_PREFIX_PATH=../../local_install/ -DWITH_BLOSC=ON -DBUILD_Z5PY=OFF ..
Expand Down
4 changes: 2 additions & 2 deletions plugin.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "Nyxus",
"version": "0.7.5",
"containerId": "polusai/nyxus:0.7.5",
"version": "0.8.2",
"containerId": "polusai/nyxus:0.8.2",
"title": "Nyxus feature extraction",
"description": "Nyxus feature extractor",
"author": "friskluft + hsidky",
Expand Down
2 changes: 1 addition & 1 deletion src/nyx/version.h
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@
#define VERSIONH_INCLUDED

#define PROJECT_NAME "Nyxus"
#define PROJECT_VER "0.7.5"
#define PROJECT_VER "0.8.2"

#endif // VERSIONH_INCLUDED
Loading