Skip to content

Commit 088e419

Browse files
authored
Pin to Textual v0.4.0 (#157)
1 parent c32ddad commit 088e419

File tree

7 files changed

+511
-12
lines changed

7 files changed

+511
-12
lines changed

CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Changelog
22

3+
## 0.4.1
4+
5+
### Fixed
6+
7+
- [#157](https://github.com/JoshKarpel/spiel/pull/157) Pinned to Textual v0.4.0 to work around https://github.com/Textualize/textual/issues/1274
8+
39
## 0.4.0
410

511
### Changed

README.md

+3
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,9 @@ Alternatively, install Spiel (`pip install spiel`) and run this command to view
2222
$ spiel demo present
2323
```
2424

25+
![The first slide of the demo deck](./screenshots/demo.svg)
26+
![The demo deck in "deck view"](./screenshots/deck.svg)
27+
2528
## Sandboxed Execution via Containers
2629

2730
Spiel presentations are live Python code: they can do anything that Python can do.

poetry.lock

+9-9
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api"
44

55
[tool.poetry]
66
name = "spiel"
7-
version = "0.4.0"
7+
version = "0.4.1"
88
description = "A framework for building and presenting richly-styled presentations in your terminal using Python."
99
readme="README.md"
1010
homepage="https://github.com/JoshKarpel/spiel"
@@ -27,7 +27,7 @@ python = ">=3.10,<4"
2727
rich = ">=12"
2828
typer = ">=0.6"
2929
Pillow = ">=8"
30-
textual = ">=0.5"
30+
textual = "==0.4.0"
3131
watchfiles = ">=0.18"
3232

3333
[tool.poetry.group.dev.dependencies]
@@ -39,7 +39,7 @@ mypy = ">=0.982"
3939
pytest-mypy = ">=0.10"
4040
pytest-mock = ">=3"
4141
hypothesis = ">=6"
42-
textual = {extras = ["dev"], version = ">=0.5"}
42+
textual = {extras = ["dev"], version = "==0.4.0"}
4343

4444
[tool.poetry.scripts]
4545
spiel = 'spiel.cli:cli'

screenshots/deck.svg

+294
Loading

0 commit comments

Comments
 (0)