File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed
lib/stactools-item-generator/runtime
src/stactools_item_generator Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -13,7 +13,8 @@ WORKDIR ${LAMBDA_TASK_ROOT}
1313COPY stactools-item-generator/runtime/pyproject.toml pyproject.toml
1414COPY stactools-item-generator/runtime/src/stactools_item_generator/ ${LAMBDA_TASK_ROOT}/stactools_item_generator/
1515
16- RUN uv export --no-dev --no-editable -o requirements.txt && \
16+ RUN yum install -y git && yum clean all && rm -rf /var/cache/yum && \
17+ uv export --no-dev --no-editable -o requirements.txt && \
1718 uv pip install --target ${LAMBDA_TASK_ROOT} -r requirements.txt && \
1819 uv tool install --with "numpy<2.3.0" ,requests stactools;
1920
Original file line number Diff line number Diff line change @@ -49,7 +49,7 @@ def create_stac_item(request: ItemRequest) -> Item:
4949 command = [
5050 "uvx" ,
5151 "--with" ,
52- f"requests,{ request .package_name } " ,
52+ f"requests,numpy<2.3.0, { request .package_name } " ,
5353 "--from" ,
5454 "stactools" ,
5555 "stac" ,
You can’t perform that action at this time.
0 commit comments