Skip to content
Snippets Groups Projects
Commit 3403df03 authored by Siddhant Tibrewal's avatar Siddhant Tibrewal
Browse files

bumped zarr required version to 3 and updated the scripts to use python3.11

parent 3d0a938b
No related branches found
No related tags found
1 merge request!43Draft: Resolve "Migrate to Zarr3 and add example for a dataset using sharding"
......@@ -8,7 +8,7 @@ version = "0.0.1"
dependencies = [
"numpy",
"pybind11",
"zarr<3.0",
"zarr>=3.0",
"healpy",
"aiohttp",
"regex_engine"
......
......@@ -3,5 +3,6 @@ wheel
ruff
pre-commit
healpy
zarr>=2,<3
zarr>=3
aiohttp
rich
\ No newline at end of file
......@@ -220,9 +220,9 @@ function install_yac {
function install_all {
echo "========================"
echo "== building HEALPIX & Co"
check_and_install healpix_cxx
# echo "========================"
# echo "== building HEALPIX & Co"
# check_and_install healpix_cxx
echo "========================"
echo "== building YAC & Co"
check_and_install yac
......
......@@ -36,7 +36,7 @@ INSTALL_PATH=$BUILD_PATH/install
mkdir -p "$BUILD_PATH"
pushd "$BUILD_PATH"
eval `spack load --sh python@3.10.10%gcc@=11.2.0`
eval `spack load --sh python@3.11.2%gcc@=11.2.0`
# recommended to use a compute node for the build process with > 8 threads
THREADS=64
......@@ -61,7 +61,7 @@ echo "=== Building coyote ==="
CC="${CC}" CXX="${CXX}" FC="${FC}" cmake $ABSOLUTE_coyote_ROOT -DCMAKE_PREFIX_PATH=$INSTALL_PATH -DCMAKE_BUILD_TYPE=Debug
cmake --build . -j $THREADS
cp $BUILD_PATH/python/coyote.*.so $VENV_PATH/lib/python3.10/site-packages/
cp $BUILD_PATH/python/coyote.*.so $VENV_PATH/lib/python3.11/site-packages/
export PYTHONPATH=${BUILD_PATH}/python:${ABSOLUTE_coyote_ROOT}/apps
echo $PYTHONPATH
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment