Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
nielstron committed Nov 16, 2024
1 parent fde805a commit 0e0eb75
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
5 changes: 3 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand All @@ -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"]

0 comments on commit 0e0eb75

Please sign in to comment.