Skip to content

Commit cbf3ac6

Browse files
committed
Update readme and fix classifiers in setup.py
1 parent ace058d commit cbf3ac6

File tree

2 files changed

+4
-11
lines changed

2 files changed

+4
-11
lines changed

README.md

+3-10
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ For building **ManimPango**, you need
4444
* [`pkg-config`](https://www.freedesktop.org/wiki/Software/pkg-config/)
4545
* [Pango](https://pango.gnome.org) along with its development headers and its dependencies.
4646

47-
If you are on MacOS, you can use [brew](https://brew.sh) to install those. Using [MacPorts](https://www.macports.org) is also possible, but their version of **Pango** is old and will probably not be updated in the near future.
47+
If you are on MacOS, you can use [brew](https://brew.sh) to install those. Using [MacPorts](https://www.macports.org) is also possible.
4848

4949
```sh
5050
brew install pango pkg-config
@@ -145,9 +145,9 @@ pacman -S mingw-w64-x86_64-ffmpeg
145145

146146
#### Visual Studio
147147

148-
First, install Visual Studio as specified in https://wiki.python.org/moin/WindowsCompilers. Possibly Visual Studio Build Tools 2019 with Windows10 SDK.
148+
First, install Visual Studio as specified in https://wiki.python.org/moin/WindowsCompilers. Possibly Visual Studio Build Tools 2022 with Windows10 SDK.
149149

150-
Then run the script at `packing/download_dlls.py`. This will get a **Pango** build along with `pkg-config` and install it at `C:\cibw\vendor`. Add `C:\cibw\vendor\bin` and `C:\cibw\vendor\pkg-config\bin` to PATH.
150+
Then run the script at `packing/download_dlls.py`. This will get a **Pango** build along with `pkg-config` and install it at `C:\cibw\vendor`. Add `C:\cibw\vendor\bin` to PATH.
151151

152152
**Note:** You can change the install location by editing line 24 of the file `packing/download_dlls.py`.
153153

@@ -165,13 +165,6 @@ Finally, you can install your local **ManimPango** clone just like any other pyt
165165
pip install .
166166
```
167167

168-
**Important**: You have to to use https://docs.python.org/3/library/os.html#os.add_dll_directory before running **ManimPango**. Alternatively, you need to copy the `dll` at `C:\cibw\vendor\bin` to the folder where **ManimPango** is compiled. This is applicable for Python 3.8 and above.
169-
170-
```python
171-
import os
172-
os.add_dll_directory('C:\cibw\vendor\bin')
173-
```
174-
175168
## Code of Conduct
176169

177170
Our full code of conduct, and how we enforce it, can be read on [our website](https://docs.manim.community/en/latest/conduct.html).

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -277,10 +277,10 @@ def update_dict(dict1: dict, dict2: dict):
277277
"Programming Language :: Python :: 3.10",
278278
"Programming Language :: Python :: 3.11",
279279
"Programming Language :: Python :: 3.12",
280+
"Programming Language :: Python :: 3.13",
280281
"Development Status :: 4 - Beta",
281282
"Programming Language :: Python :: 3 :: Only",
282283
"License :: OSI Approved :: MIT License",
283-
"Operating System :: OS Independent",
284284
"Programming Language :: Cython",
285285
],
286286
project_urls={

0 commit comments

Comments
 (0)