Skip to content

Commit

Permalink
setup: exclude urwid versions that break Tui
Browse files Browse the repository at this point in the history
* A small issue in two urwid releases caused Tui to crash on startup.
  • Loading branch information
oliver-sanders committed Feb 22, 2024
1 parent 9936262 commit e5023e8
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion conda-environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ dependencies:
- pyzmq >=22
- setuptools >=49,!=67.*
- importlib_metadata # [py<3.8]
- urwid >=2,<3
- urwid >=2,<3,!=2.6.2,!=2.6.3
- tomli >=2 # [py<3.11]

# optional dependencies
Expand Down
3 changes: 2 additions & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,8 @@ install_requires =
# https://github.com/pypa/setuptools/issues/3802
setuptools>=49,!=67.*
importlib_metadata; python_version < "3.8"
urwid==2.*
# NOTE: exclude two urwid versions that were not compatible with Tui
urwid==2.*,!=2.6.2,!=2.6.3
# unpinned transient dependencies used for type checking
rx
promise
Expand Down

0 comments on commit e5023e8

Please sign in to comment.