Skip to content

Commit 90356cc

Browse files
setup: exclude urwid versions that break Tui (#5992)
1 parent 9936262 commit 90356cc

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

conda-environment.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ dependencies:
1717
- pyzmq >=22
1818
- setuptools >=49,!=67.*
1919
- importlib_metadata # [py<3.8]
20-
- urwid >=2,<3
20+
- urwid >=2,<3,!=2.6.2,!=2.6.3
2121
- tomli >=2 # [py<3.11]
2222

2323
# optional dependencies

setup.cfg

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,8 @@ install_requires =
7575
# https://github.com/pypa/setuptools/issues/3802
7676
setuptools>=49,!=67.*
7777
importlib_metadata; python_version < "3.8"
78-
urwid==2.*
78+
# NOTE: exclude two urwid versions that were not compatible with Tui
79+
urwid==2.*,!=2.6.2,!=2.6.3
7980
# unpinned transient dependencies used for type checking
8081
rx
8182
promise

0 commit comments

Comments
 (0)