File tree Expand file tree Collapse file tree 2 files changed +4
-3
lines changed
extensions/positron-python/python_files/posit Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -27,7 +27,8 @@ numpy==2.0.2; python_version == '3.9'
27
27
numpy==2.2.4; python_version >= '3.10'
28
28
pandas==2.2.3
29
29
plotly==6.0.1
30
- plotnine
30
+ plotnine==0.13.6; python_version == '3.9'
31
+ plotnine==0.14.5; python_version >= '3.10'
31
32
polars==1.26.0
32
33
polars[timezone]==1.26.0; sys_platform == 'win32'
33
34
pyarrow==19.0.1
Original file line number Diff line number Diff line change @@ -262,7 +262,7 @@ class PositronShell(ZMQInteractiveShell):
262
262
object_info_string_level : int
263
263
magics_manager : MagicsManager
264
264
display_pub : ZMQDisplayPublisher
265
- display_formatter = traitlets .Instance (PositronDisplayFormatter , allow_none = True )
265
+ display_formatter = traitlets .Instance (PositronDisplayFormatter )
266
266
267
267
inspector_class : type [PositronIPythonInspector ] = traitlets .Type (
268
268
PositronIPythonInspector , # type: ignore
@@ -336,7 +336,7 @@ def init_user_ns(self):
336
336
337
337
def init_display_formatter (self ):
338
338
self .display_formatter = PositronDisplayFormatter (parent = self )
339
- self .configurables .append (self .display_formatter )
339
+ self .configurables .append (self .display_formatter ) # type: ignore IPython type annotation is wrong
340
340
341
341
def _handle_pre_run_cell (self , info : ExecutionInfo ) -> None :
342
342
"""Prior to execution, reset the user environment watch state."""
You can’t perform that action at this time.
0 commit comments