Skip to content

Commit

Permalink
feat: only require typing_extension for python < 3.11 (#397)
Browse files Browse the repository at this point in the history
Python version >= 3.11 shouldn't need to install `typing_extensions`.
The only current usage we have is in UITable.py.
  • Loading branch information
devinrsmith authored Apr 2, 2024
1 parent 6292b3a commit e31dc6f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plugins/ui/setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ install_requires =
deephaven-plugin>=0.6.0
json-rpc
deephaven-plugin-utilities
typing_extensions
typing_extensions;python_version<'3.11'
include_package_data = True

[options.packages.find]
Expand Down

0 comments on commit e31dc6f

Please sign in to comment.