Skip to content

Commit 1fdb5dc

Browse files
eeeliepre-commit-ci[bot]ayalagj
authored
fix: updated minimum textual version (#120)
* fix: updated minimum textual version * Update src/uproot_browser/tui/browser.py --------- Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com> Co-authored-by: ayalagj <99106658+ayalagj@users.noreply.github.com>
1 parent 765c0c2 commit 1fdb5dc

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.pre-commit-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ repos:
2929
hooks:
3030
- id: mypy
3131
files: src
32-
additional_dependencies: [rich>=12, click>=8.1.1, hist, numpy, textual>0.13]
32+
additional_dependencies: [rich>=12, click>=8.1.1, hist, numpy, textual>0.18]
3333

3434
- repo: https://github.com/codespell-project/codespell
3535
rev: v2.2.4

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ dependencies = [
4545
"uproot >=4.2.1",
4646
"plotext >=5.2.2",
4747
"hist >=2.4",
48-
"textual >=0.13.0",
48+
"textual >=0.18.0",
4949
'typing_extensions; python_version<"3.8"'
5050
]
5151

src/uproot_browser/tui/browser.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
from textual.reactive import var
1818

1919
with contextlib.suppress(AttributeError):
20-
light_background = 0xEF, 0xEF, 0xEF # $surface-darken-1
20+
light_background = 0xF5, 0xF5, 0xF5
2121
# pylint: disable-next=protected-access
2222
plt._dict.themes["default"][0] = light_background
2323
# pylint: disable-next=protected-access

0 commit comments

Comments
 (0)