Skip to content

Commit 7135370

Browse files
committed
chore(deps): pin rtoml==0.9.0 on Windows
See #398 and samuelcolvin/rtoml#74.
1 parent b080739 commit 7135370

File tree

2 files changed

+12
-1
lines changed

2 files changed

+12
-1
lines changed

CHANGELOG.md

+10
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1010
(unreleased)=
1111
## [Unreleased](https://github.com/jeertmans/manim-slides/compare/5.1.7...HEAD)
1212

13+
(unreleased-chore)=
14+
### Chore
15+
16+
- Pin `rtoml==0.9.0` on Windows platforms,
17+
see [#398](https://github.com/jeertmans/manim-slides/pull/398),
18+
until
19+
[samuelcolvin/rtoml#74](https://github.com/samuelcolvin/rtoml/issues/74)
20+
is solved.
21+
[#432](https://github.com/jeertmans/manim-slides/pull/432)
22+
1323
(unreleased-fixed)=
1424
### Fixed
1525

pyproject.toml

+2-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,8 @@ dependencies = [
3030
"qtpy>=2.4.1",
3131
"requests>=2.28.1",
3232
"rich>=13.3.2",
33-
"rtoml>=0.9.0",
33+
"rtoml==0.9.0;sys_platform=='win32' and python_version<'3.13'",
34+
"rtoml>=0.9.0;sys_platform!='win32' or python_version>='3.13'",
3435
"tqdm>=4.64.1",
3536
]
3637
description = "Tool for live presentations using manim"

0 commit comments

Comments
 (0)