Skip to content

Commit 20e8198

Browse files
committed
Some general Fixes
1 parent 1ceba97 commit 20e8198

File tree

6 files changed

+25
-14
lines changed

6 files changed

+25
-14
lines changed

.github/manimdependency.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
2-
"windows": {
3-
"sox": "sox-14.4.2-win32",
4-
"ffmpeg": "https://www.gyan.dev/ffmpeg/builds/packages/ffmpeg-4.3.1-2020-09-16-full_build.zip",
5-
"pango": "v0.1.0"
6-
}
2+
"windows": {
3+
"sox": "sox-14.4.2-win32",
4+
"ffmpeg": "https://www.gyan.dev/ffmpeg/builds/packages/ffmpeg-4.3.1-2020-09-16-full_build.zip",
5+
"pango": "v0.1.0"
6+
}
77
}

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
fail-fast: false
1717
matrix:
1818
os: [ubuntu-latest, macos-latest, windows-latest]
19-
python: [3.6, 3.7, 3.8]
19+
python: [3.6,3.7, 3.8]
2020

2121
steps:
2222
- name: Checkout the repository

docs/source/changelog.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ Mobjects, Scenes, and Animations
6060
#. The :code:`Container` class has been made into an AbstractBaseClass, i.e. in cannot be instantiated. Instead, use one of its children classes
6161
#. The ``TextMobject`` and ``TexMobject`` objects have been deprecated, due to their confusing names, in favour of ``Tex`` and ``MathTex``. You can still, however, continue to use ``TextMobject`` and ``TexMobject``, albeit with Deprecation Warnings constantly reminding you to switch.
6262
#. Add a :code:`Variable` class for displaying text that continuously updates to reflect the value of a python variable.
63-
63+
#. Add ``PangoText`` for rendering texts using Pango.
6464

6565

6666
Documentation

docs/source/installation/mac.rst

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,16 @@ To install cairo:
1515
1616
brew install cairo
1717
18+
To install Pango and it dependencies:
19+
20+
.. code-block:: bash
21+
22+
brew install pkg-config
23+
brew install libffi
24+
brew install pango
25+
brew install glib
26+
27+
1828
To install ffmpeg:
1929

2030
.. code-block:: bash

docs/source/installation/win.rst

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,13 +20,17 @@ And then you can skip all the other steps and move to installing :ref:`latex-ins
2020

2121
Pango Installation
2222
******************
23-
These steps would get you `libpango-1.0-0.dll` to your ``PATH`` along with other dependencies. You may probably have them before itself if you have installed `GTK <https://www.gtk.org/>`_ or any ``GTK`` based app like emacs. If you have it you can just add it to your path and skip these steps.
23+
These steps would get you `libpango-1.0-0.dll` to your ``PATH`` along
24+
with other dependencies. You may probably have them before itself if
25+
you have installed `GTK <https://www.gtk.org/>`_ or any ``GTK``
26+
based app like emacs. If you have it you can just add it to your
27+
path and skip these steps.
2428

2529
1. Go to `Release Page
26-
<https://github.com/ManimCommunity/manim-windows/releases/latest>`_ and download the one according
27-
to your PC architechture.
30+
<https://github.com/ManimCommunity/manim-windows/releases/latest>`_
31+
and download the one according to your PC architechture.
2832

29-
.. important:: Please download the ``zip`` file for architechtureof python installed.
33+
.. important:: Please download the ``zip`` file for architechture of python installed.
3034
It is possible to have installed ``x86`` python on ``x64`` PC.
3135

3236
2. Extract the zip file using File Explorer or 7z to the loaction you want to install.

tests/test_pango.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -122,6 +122,3 @@ def test_tabs_replace():
122122
surface.finish()
123123
b = SVGMobject(filename)
124124
assert len(a.submobjects) == len(b.submobjects)
125-
126-
127-
test_tabs_replace()

0 commit comments

Comments
 (0)