Skip to content

Commit

Permalink
chore(deps): make all groups optional (#238)
Browse files Browse the repository at this point in the history
* chore(deps): make all groups optional

* chore(deps): update lock file

* chore(ci): run apt-get update
  • Loading branch information
jeertmans authored Aug 7, 2023
1 parent fb02764 commit 1275e91
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 1 deletion.
3 changes: 3 additions & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,9 @@ jobs:
python-version: ${{ matrix.pyversion }}
cache: poetry

- name: Run apt-get update on Ubuntu
run: sudo apt-get update

- name: Install manim dependencies on Ubuntu
run: |
sudo apt-get install libcairo2-dev libpango1.0-dev ffmpeg freeglut3-dev
Expand Down
2 changes: 1 addition & 1 deletion poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 9 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,9 @@ manim = ["manim"]
manimgl = ["manimgl"]
sphinx-directive = ["docutils", "jinja2", "manim"]

[tool.poetry.group.dev]
optional = true

[tool.poetry.group.dev.dependencies]
black = "^22.10.0"
bump2version = "^1.0.1"
Expand All @@ -82,6 +85,9 @@ mypy = "^0.991"
pre-commit = "^3.0.2"
ruff = "^0.0.219"

[tool.poetry.group.docs]
optional = true

[tool.poetry.group.docs.dependencies]
furo = "^2023.5.20"
ipykernel = "^6.25.1"
Expand All @@ -94,6 +100,9 @@ sphinx-click = "^4.4.0"
sphinx-copybutton = "^0.5.1"
sphinxext-opengraph = "^0.7.5"

[tool.poetry.group.test]
optional = true

[tool.poetry.group.test.dependencies]
manim = "^0.17.3"
manimgl = "^1.6.1"
Expand Down

0 comments on commit 1275e91

Please sign in to comment.