From aad813a4e20fd31aa1cefcb89a3adbffe563277a Mon Sep 17 00:00:00 2001 From: Liyu Xiao Date: Fri, 16 May 2025 11:33:31 -0400 Subject: [PATCH] updated yaml file --- .riahub/workflows/workflow.yaml | 2 +- setup.py | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.riahub/workflows/workflow.yaml b/.riahub/workflows/workflow.yaml index a5cf268..ac29009 100644 --- a/.riahub/workflows/workflow.yaml +++ b/.riahub/workflows/workflow.yaml @@ -36,7 +36,7 @@ jobs: run: | python -m pip install --upgrade pip pip install h5py numpy - pip install -e + pip install -e . - name: 1. Build HDF5 Dataset run: | diff --git a/setup.py b/setup.py index 755c1c1..e0437af 100644 --- a/setup.py +++ b/setup.py @@ -3,8 +3,8 @@ from setuptools import setup, find_packages setup( name="modrec_workflow", version="0.1", - packages=find_packages(), # this will pick up `utils/` (so utils/__init__.py must exist) + packages=find_packages(), install_requires=[ - # runtime dependencies go here (if any) + ], )