Skip to content

Commit

Permalink
Remove unused deps (#3)
Browse files Browse the repository at this point in the history
## Summary of Changes

Remove unused dependencies  (numpy & cython) from pyproject.toml.
  • Loading branch information
myedibleenso authored Nov 17, 2024
1 parent 11970d5 commit cce24a6
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/tests-and-docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,11 +48,12 @@ jobs:
- name: "Unit tests and code coverage reports for Python components"
run: |
pytest -vvv
# docs (other)
- name: "Create documentation (other)"
run: |
docker run -i -v "$GITHUB_WORKSPACE:/app" parsertongue/mkdocs:latest mkdocs build -c
mkdocs build -c
- name: Deploy docs
if: github.ref == 'refs/heads/main'
uses: peaceiris/actions-gh-pages@v3
Expand Down
4 changes: 1 addition & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,6 @@ authors = [
description = "Python interface to CLU processors"
version = "0.1.0"
dependencies=[
"Cython",
"numpy",
"pydantic>=2.0.0",
"typing_extensions", # see https://github.com/pydantic/pydantic/issues/5821#issuecomment-1559196859
"func_timeout"
Expand All @@ -25,7 +23,7 @@ dynamic = ["readme"]
dev = ["pytest", "pytest-cov", "pytest-xdist", "black", "mypy", "coverage"]

# project documentation generation
doc = ["mkdocs==1.2.3", "pdoc3==0.10.0", "mkdocs-git-snippet==0.1.1", "mkdocs-git-revision-date-localized-plugin==0.11.1", "mkdocs-git-authors-plugin==0.6.3", "mkdocs-rtd-dropdown==1.0.2", "jinja2<3.1.0"]
doc = ["mkdocs==1.2.3", "pdoc3==0.10.0", "mkdocs-git-snippet==0.1.1", "mkdocs-git-revision-date-localized-plugin==0.11.1", "mkdocs-git-authors-plugin==0.6.3", "mkdocs-rtd-dropdown==1.0.2", "jinja2<3.1.0", "mkdocs-mermaid2-plugin"]

highlight = ["termcolor"]

Expand Down

0 comments on commit cce24a6

Please sign in to comment.