diff --git a/.github/workflows/nvidia_workflow.yml b/.github/workflows/nvidia_workflow.yml index ff156a50..59a5e4d4 100644 --- a/.github/workflows/nvidia_workflow.yml +++ b/.github/workflows/nvidia_workflow.yml @@ -41,7 +41,7 @@ jobs: shell: bash run: | pip install --upgrade pip - pip install -r "requirements.txt" + pip install -r "requirements-dev.txt" pip install -e . diff --git a/README.md b/README.md index ada60aba..7a240d10 100644 --- a/README.md +++ b/README.md @@ -44,7 +44,7 @@ The key idea is that we're using Github Actions as a job scheduling engine and p > [!IMPORTANT] > Python 3.11 or higher is required. -After, install the dependencies with `pip install -r requirements.txt`. +After, install the dependencies with `pip install -r requirements-dev.txt`. ### Setup Discord Bot diff --git a/docker/amd-docker.Dockerfile b/docker/amd-docker.Dockerfile index f9c9ac33..6482bdc7 100644 --- a/docker/amd-docker.Dockerfile +++ b/docker/amd-docker.Dockerfile @@ -118,4 +118,4 @@ RUN cd /tmp \ ENV ROCSHMEM_INSTALL_DIR=${ROCSHMEM_INSTALL_DIR} -ENV LD_LIBRARY_PATH="${ROCSHMEM_INSTALL_DIR}/lib:${LD_LIBRARY_PATH}" \ No newline at end of file +ENV LD_LIBRARY_PATH="${ROCSHMEM_INSTALL_DIR}/lib:${LD_LIBRARY_PATH}" diff --git a/requirements.txt b/requirements-dev.txt similarity index 100% rename from requirements.txt rename to requirements-dev.txt