Skip to content

Commit e1603a5

Browse files
authored
Merge branch 'main' into optimized_vmobject_points
2 parents f64b874 + 7c9f98c commit e1603a5

File tree

4 files changed

+35
-253
lines changed

4 files changed

+35
-253
lines changed

.pre-commit-config.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ repos:
2424
name: isort (pyi)
2525
types: [pyi]
2626
- repo: https://github.com/asottile/pyupgrade
27-
rev: v3.8.0
27+
rev: v3.9.0
2828
hooks:
2929
- id: pyupgrade
3030
name: Update code to new python versions
@@ -39,7 +39,7 @@ repos:
3939
hooks:
4040
- id: black
4141
- repo: https://github.com/asottile/blacken-docs
42-
rev: 1.14.0
42+
rev: 1.15.0
4343
hooks:
4444
- id: blacken-docs
4545
additional_dependencies: [black==22.3.0]

docs/source/installation/macos.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ are required, namely:
3434

3535
.. code-block:: bash
3636
37-
brew install pango scipy
37+
brew install pango pkg-config scipy
3838
3939
After all required dependencies are installed, simply run:
4040

manim/scene/vector_space_scene.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -558,11 +558,12 @@ class LinearTransformationScene(VectorScene):
558558
.. manim:: LinearTransformationSceneExample
559559
560560
class LinearTransformationSceneExample(LinearTransformationScene):
561-
def __init__(self):
561+
def __init__(self, **kwargs):
562562
LinearTransformationScene.__init__(
563563
self,
564564
show_coordinates=True,
565565
leave_ghost_vectors=True,
566+
*kwargs
566567
)
567568
568569
def construct(self):

0 commit comments

Comments
 (0)