From 94d454ba6974988f649665ee0fce9c5d0f194a92 Mon Sep 17 00:00:00 2001 From: Vitaliy Chiley Date: Mon, 3 Jul 2023 21:34:05 -0700 Subject: [PATCH] typo --- .github/workflows/release.yaml | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 7f5413fcc2..a9d44ec860 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -38,7 +38,7 @@ jobs: # without this dependency. sed '/xentropy-cuda-lib@git+https:\/\/github.com\/HazyResearch\/flash-attention.git@.*/d' -i setup.py sed '/triton-pre-mlir@git+https:\/\/github.com\/vchiley\/triton.git@.*/d' -i setup.py - sed '/peft@git+https:\/\/github.com\/huggingface\/peft.git@.*/d' -i setup.py + sed '/peft @ git+https:\/\/github.com\/huggingface\/peft.git@.*/d' -i setup.py python -m pip install --upgrade build twine python -m build diff --git a/setup.py b/setup.py index 4c7deb1c63..4b90976d82 100644 --- a/setup.py +++ b/setup.py @@ -92,7 +92,7 @@ 'scipy>=1.10.0,<=1.11.0', # bitsandbytes dependency; TODO: eliminate when incorporated to bitsandbytes # TODO: pin peft when it stabilizes. # PyPI does not support direct dependencies, so we remove this line before uploading from PyPI - 'peft@git+https://github.com/huggingface/peft.git', + 'peft @ git+https://github.com/huggingface/peft.git', ] extra_deps['all'] = set(dep for deps in extra_deps.values() for dep in deps)