From 1e2ba9a9c7b1d61c8062eaa876d1a7a06a5e7253 Mon Sep 17 00:00:00 2001 From: Eric Curtin Date: Wed, 2 Oct 2024 16:50:46 +0100 Subject: [PATCH] Fix CI Fix GitHub yaml Signed-off-by: Eric Curtin --- .github/workflows/ci.yml | 5 +++-- Makefile | 5 +---- requirements.txt | 6 ------ 3 files changed, 4 insertions(+), 12 deletions(-) delete mode 100644 requirements.txt diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 41ac984c..9eb8c04a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -20,8 +20,9 @@ jobs: - uses: actions/checkout@v4 - name: install golang shell: bash - run: brew install go - run: make install-requirements + run: | + brew install go + make install-requirements - name: Run a one-line script shell: bash run: make validate diff --git a/Makefile b/Makefile index 1df07670..1ac8f1d2 100644 --- a/Makefile +++ b/Makefile @@ -35,10 +35,7 @@ help: .PHONY: install-requirements: - @pipx install -q black flake8 - $(PYTHON) -m pip install --user -r requirements.txt - pip install "huggingface_hub[cli]==0.25.1" - pip install "omlmd==0.1.4" + @pipx install -q black flake8 argcomplete setuptools wheel omlmd huggingface_hub[cli .PHONY: install-completions: diff --git a/requirements.txt b/requirements.txt deleted file mode 100644 index 2f4f6df9..00000000 --- a/requirements.txt +++ /dev/null @@ -1,6 +0,0 @@ -# Any changes should be copied into pyproject.toml -argcomplete -setuptools -wheel -omlmd -huggingface_hub[cli]