From 0e0eb75b72421cede70c05417a1c4e57d1519899 Mon Sep 17 00:00:00 2001 From: Niels Date: Sat, 16 Nov 2024 11:32:44 +0100 Subject: [PATCH] Fix --- .github/workflows/build.yml | 3 +-- pyproject.toml | 5 +++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 4a0c6a7..d2396cf 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -27,8 +27,7 @@ jobs: - name: Install dependencies run: | python -m pip install --upgrade pip - pip install pre-commit - pip install -e ".[testing]" + pip install -e ".[testing,develop]" - name: Run pre-commit checks run: | pre-commit install diff --git a/pyproject.toml b/pyproject.toml index beb12b4..fb8689a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -9,7 +9,7 @@ authors = [ {name="Mark Mueller", email="mark@logicstar.ai"}, {name="Niels Mündler", email="niels.muendler@inf.ethz.ch"}, ] -requires-python = ">=3.9" +requires-python = ">=3.8" license = { "text" = "MIT" } dependencies = [ "requests", @@ -24,5 +24,6 @@ dependencies = [ ] [project.optional-dependencies] -testing = ["pytest", "pytest-cov", "pytest-xdist", "git"] +develop = ["pre-commit"] +testing = ["pytest", "pytest-cov", "pytest-xdist"] figures = ["tiktoken", "numpy", "tabulate", "venny4py", "nltk"]