From 109a96e97ca9271b2662b6b2bc89c2467709860e Mon Sep 17 00:00:00 2001 From: espg Date: Mon, 6 Jul 2026 18:42:49 -0700 Subject: [PATCH] pin h5coro-hidefix at 0.3.0 (issue #170) --- deployment/aws/build_layer.sh | 2 +- pyproject.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/deployment/aws/build_layer.sh b/deployment/aws/build_layer.sh index 4c3ab45..9d27353 100755 --- a/deployment/aws/build_layer.sh +++ b/deployment/aws/build_layer.sh @@ -75,7 +75,7 @@ $PIP install \ # its only runtime dep is numpy (already installed above). Keep the pin in # sync with the `lambda` extra in pyproject.toml. echo "Installing h5coro, h5coro-hidefix and mortie (--no-deps)..." -$PIP install "h5coro==1.0.4" "h5coro-hidefix==0.2.0" mortie --no-deps -t "$OUTPUT_DIR/python" --no-cache-dir +$PIP install "h5coro==1.0.4" "h5coro-hidefix==0.3.0" mortie --no-deps -t "$OUTPUT_DIR/python" --no-cache-dir # Verify numpy stayed < 2.3 NUMPY_VERSION=$(ls "$OUTPUT_DIR/python" | grep -E "^numpy-" | head -1) diff --git a/pyproject.toml b/pyproject.toml index 9c4339e..ce00709 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -65,7 +65,7 @@ lambda = [ "h5coro==1.0.4", # Keep this pin in sync with deployment/aws/build_layer.sh (abi3 # manylinux_2_28 wheels cover both layer arches, ~2.2 MB each). - "h5coro-hidefix==0.2.0", + "h5coro-hidefix==0.3.0", "cramjam", "astropy", ]