Support Pandas 2.2, unpin Pyarrow, and fail on warnings in tests #258
test.yaml
on: pull_request
Matrix: core_test_suite
Matrix: unit_test_suite
Annotations
18 errors
unit:test-39:macos-latest:
examples/Overview.ipynb#L1
examples/Overview.ipynb::Cell 40
Notebook cell execution failed
Cell 40: Cell execution caused an exception
Input:
%%timeit
len(sjoin(cities_large_df, world_df))
Traceback:
---------------------------------------------------------------------------
ValueError Traceback (most recent call last)
Cell In[1], line 1
----> 1 get_ipython().run_cell_magic('timeit', '', 'len(sjoin(cities_large_df, world_df))\n')
File ~/work/spatialpandas/spatialpandas/.pixi/envs/test-39/lib/python3.9/site-packages/IPython/core/interactiveshell.py:2517, in InteractiveShell.run_cell_magic(self, magic_name, line, cell)
2515 with self.builtin_trap:
2516 args = (magic_arg_s, cell)
-> 2517 result = fn(*args, **kwargs)
2519 # The code below prevents the output from being displayed
2520 # when using magics with decorator @output_can_be_silenced
2521 # when the last Python token in the expression is a ';'.
2522 if getattr(fn, magic.MAGIC_OUTPUT_CAN_BE_SILENCED, False):
File ~/work/spatialpandas/spatialpandas/.pixi/envs/test-39/lib/python3.9/site-packages/IPython/core/magics/execution.py:1185, in ExecutionMagics.timeit(self, line, cell, local_ns)
1183 for index in range(0, 10):
1184 number = 10 ** index
-> 1185 time_number = timer.timeit(number)
1186 if time_number >= 0.2:
1187 break
File ~/work/spatialpandas/spatialpandas/.pixi/envs/test-39/lib/python3.9/site-packages/IPython/core/magics/execution.py:173, in Timer.timeit(self, number)
171 gc.disable()
172 try:
--> 173 timing = self.inner(it, self.timer)
174 finally:
175 if gcold:
File <magic-timeit>:1, in inner(_it, _timer)
File ~/work/spatialpandas/spatialpandas/spatialpandas/tools/sjoin.py:88, in sjoin(left_df, right_df, how, op, lsuffix, rsuffix)
86 # Perform sjoin
87 if isinstance(left_df, GeoDataFrame):
---> 88 return _sjoin_pandas_pandas(
89 left_df, right_df, how=how, op=op, lsuffix=lsuffix, rsuffix=�[3
|
unit:test-39:macos-latest:
examples/Overview.ipynb#L1
examples/Overview.ipynb::Cell 41
Notebook cell execution failed
Cell 41: Cell execution caused an exception
Input:
%%timeit
len(sjoin(cities_large_ddf, world_df))
Traceback:
---------------------------------------------------------------------------
ValueError Traceback (most recent call last)
Cell In[1], line 1
----> 1 get_ipython().run_cell_magic('timeit', '', 'len(sjoin(cities_large_ddf, world_df))\n')
File ~/work/spatialpandas/spatialpandas/.pixi/envs/test-39/lib/python3.9/site-packages/IPython/core/interactiveshell.py:2517, in InteractiveShell.run_cell_magic(self, magic_name, line, cell)
2515 with self.builtin_trap:
2516 args = (magic_arg_s, cell)
-> 2517 result = fn(*args, **kwargs)
2519 # The code below prevents the output from being displayed
2520 # when using magics with decorator @output_can_be_silenced
2521 # when the last Python token in the expression is a ';'.
2522 if getattr(fn, magic.MAGIC_OUTPUT_CAN_BE_SILENCED, False):
File ~/work/spatialpandas/spatialpandas/.pixi/envs/test-39/lib/python3.9/site-packages/IPython/core/magics/execution.py:1185, in ExecutionMagics.timeit(self, line, cell, local_ns)
1183 for index in range(0, 10):
1184 number = 10 ** index
-> 1185 time_number = timer.timeit(number)
1186 if time_number >= 0.2:
1187 break
File ~/work/spatialpandas/spatialpandas/.pixi/envs/test-39/lib/python3.9/site-packages/IPython/core/magics/execution.py:173, in Timer.timeit(self, number)
171 gc.disable()
172 try:
--> 173 timing = self.inner(it, self.timer)
174 finally:
175 if gcold:
File <magic-timeit>:1, in inner(_it, _timer)
File ~/work/spatialpandas/spatialpandas/.pixi/envs/test-39/lib/python3.9/site-packages/dask/dataframe/core.py:4921, in DataFrame.__len__(self)
4919 return super().__len__()
4920 else:
-> 4921 return len(s)
File ~/work/spatialpandas/spatialpandas/.pixi/envs/test-39/lib/python3.9/site-packages/dask/dataframe/core.py:1009, in _Frame.__len__(self)
1008 def __len__(self):
-> 1009 return se
|
unit:test-39:macos-latest
Process completed with exit code 1.
|
unit:test-312:macos-latest:
examples/Overview.ipynb#L1
examples/Overview.ipynb::Cell 40
Notebook cell execution failed
Cell 40: Cell execution caused an exception
Input:
%%timeit
len(sjoin(cities_large_df, world_df))
Traceback:
---------------------------------------------------------------------------
ValueError Traceback (most recent call last)
Cell In[1], line 1
----> 1 get_ipython().run_cell_magic('timeit', '', 'len(sjoin(cities_large_df, world_df))\n')
File ~/work/spatialpandas/spatialpandas/.pixi/envs/test-312/lib/python3.12/site-packages/IPython/core/interactiveshell.py:2541, in InteractiveShell.run_cell_magic(self, magic_name, line, cell)
2539 with self.builtin_trap:
2540 args = (magic_arg_s, cell)
-> 2541 result = fn(*args, **kwargs)
2543 # The code below prevents the output from being displayed
2544 # when using magics with decorator @output_can_be_silenced
2545 # when the last Python token in the expression is a ';'.
2546 if getattr(fn, magic.MAGIC_OUTPUT_CAN_BE_SILENCED, False):
File ~/work/spatialpandas/spatialpandas/.pixi/envs/test-312/lib/python3.12/site-packages/IPython/core/magics/execution.py:1185, in ExecutionMagics.timeit(self, line, cell, local_ns)
1183 for index in range(0, 10):
1184 number = 10 ** index
-> 1185 time_number = timer.timeit(number)
1186 if time_number >= 0.2:
1187 break
File ~/work/spatialpandas/spatialpandas/.pixi/envs/test-312/lib/python3.12/site-packages/IPython/core/magics/execution.py:173, in Timer.timeit(self, number)
171 gc.disable()
172 try:
--> 173 timing = self.inner(it, self.timer)
174 finally:
175 if gcold:
File <magic-timeit>:1, in inner(_it, _timer)
File ~/work/spatialpandas/spatialpandas/spatialpandas/tools/sjoin.py:88, in sjoin(left_df, right_df, how, op, lsuffix, rsuffix)
86 # Perform sjoin
87 if isinstance(left_df, GeoDataFrame):
---> 88 return _sjoin_pandas_pandas(
89 left_df, right_df, how=how, op=op, lsuffix=lsuffix, rsuffix�[38;5;241;4
|
unit:test-312:macos-latest:
examples/Overview.ipynb#L1
examples/Overview.ipynb::Cell 41
Notebook cell execution failed
Cell 41: Cell execution caused an exception
Input:
%%timeit
len(sjoin(cities_large_ddf, world_df))
Traceback:
---------------------------------------------------------------------------
ValueError Traceback (most recent call last)
Cell In[1], line 1
----> 1 get_ipython().run_cell_magic('timeit', '', 'len(sjoin(cities_large_ddf, world_df))\n')
File ~/work/spatialpandas/spatialpandas/.pixi/envs/test-312/lib/python3.12/site-packages/IPython/core/interactiveshell.py:2541, in InteractiveShell.run_cell_magic(self, magic_name, line, cell)
2539 with self.builtin_trap:
2540 args = (magic_arg_s, cell)
-> 2541 result = fn(*args, **kwargs)
2543 # The code below prevents the output from being displayed
2544 # when using magics with decorator @output_can_be_silenced
2545 # when the last Python token in the expression is a ';'.
2546 if getattr(fn, magic.MAGIC_OUTPUT_CAN_BE_SILENCED, False):
File ~/work/spatialpandas/spatialpandas/.pixi/envs/test-312/lib/python3.12/site-packages/IPython/core/magics/execution.py:1185, in ExecutionMagics.timeit(self, line, cell, local_ns)
1183 for index in range(0, 10):
1184 number = 10 ** index
-> 1185 time_number = timer.timeit(number)
1186 if time_number >= 0.2:
1187 break
File ~/work/spatialpandas/spatialpandas/.pixi/envs/test-312/lib/python3.12/site-packages/IPython/core/magics/execution.py:173, in Timer.timeit(self, number)
171 gc.disable()
172 try:
--> 173 timing = self.inner(it, self.timer)
174 finally:
175 if gcold:
File <magic-timeit>:1, in inner(_it, _timer)
File ~/work/spatialpandas/spatialpandas/.pixi/envs/test-312/lib/python3.12/site-packages/dask/dataframe/core.py:4921, in DataFrame.__len__(self)
4919 return super().__len__()
4920 else:
-> 4921 return len(s)
File ~/work/spatialpandas/spatialpandas/.pixi/envs/test-312/lib/python3.12/site-packages/dask/dataframe/core.py:1011, in _Frame.__len__(self)
1008 def __len__(self):
1009 return �[38;
|
unit:test-312:macos-latest
Process completed with exit code 1.
|
unit:test-312:ubuntu-latest:
examples/Overview.ipynb#L1
examples/Overview.ipynb::Cell 40
Notebook cell execution failed
Cell 40: Cell execution caused an exception
Input:
%%timeit
len(sjoin(cities_large_df, world_df))
Traceback:
---------------------------------------------------------------------------
ValueError Traceback (most recent call last)
Cell In[1], line 1
----> 1 get_ipython().run_cell_magic('timeit', '', 'len(sjoin(cities_large_df, world_df))\n')
File ~/work/spatialpandas/spatialpandas/.pixi/envs/test-312/lib/python3.12/site-packages/IPython/core/interactiveshell.py:2541, in InteractiveShell.run_cell_magic(self, magic_name, line, cell)
2539 with self.builtin_trap:
2540 args = (magic_arg_s, cell)
-> 2541 result = fn(*args, **kwargs)
2543 # The code below prevents the output from being displayed
2544 # when using magics with decorator @output_can_be_silenced
2545 # when the last Python token in the expression is a ';'.
2546 if getattr(fn, magic.MAGIC_OUTPUT_CAN_BE_SILENCED, False):
File ~/work/spatialpandas/spatialpandas/.pixi/envs/test-312/lib/python3.12/site-packages/IPython/core/magics/execution.py:1185, in ExecutionMagics.timeit(self, line, cell, local_ns)
1183 for index in range(0, 10):
1184 number = 10 ** index
-> 1185 time_number = timer.timeit(number)
1186 if time_number >= 0.2:
1187 break
File ~/work/spatialpandas/spatialpandas/.pixi/envs/test-312/lib/python3.12/site-packages/IPython/core/magics/execution.py:173, in Timer.timeit(self, number)
171 gc.disable()
172 try:
--> 173 timing = self.inner(it, self.timer)
174 finally:
175 if gcold:
File <magic-timeit>:1, in inner(_it, _timer)
File ~/work/spatialpandas/spatialpandas/spatialpandas/tools/sjoin.py:88, in sjoin(left_df, right_df, how, op, lsuffix, rsuffix)
86 # Perform sjoin
87 if isinstance(left_df, GeoDataFrame):
---> 88 return _sjoin_pandas_pandas(
89 left_df, right_df, how=how, op=op, lsuffix=lsuffix, rsuffix�[38;5;241;4
|
unit:test-312:ubuntu-latest:
examples/Overview.ipynb#L1
examples/Overview.ipynb::Cell 41
Notebook cell execution failed
Cell 41: Cell execution caused an exception
Input:
%%timeit
len(sjoin(cities_large_ddf, world_df))
Traceback:
---------------------------------------------------------------------------
ValueError Traceback (most recent call last)
Cell In[1], line 1
----> 1 get_ipython().run_cell_magic('timeit', '', 'len(sjoin(cities_large_ddf, world_df))\n')
File ~/work/spatialpandas/spatialpandas/.pixi/envs/test-312/lib/python3.12/site-packages/IPython/core/interactiveshell.py:2541, in InteractiveShell.run_cell_magic(self, magic_name, line, cell)
2539 with self.builtin_trap:
2540 args = (magic_arg_s, cell)
-> 2541 result = fn(*args, **kwargs)
2543 # The code below prevents the output from being displayed
2544 # when using magics with decorator @output_can_be_silenced
2545 # when the last Python token in the expression is a ';'.
2546 if getattr(fn, magic.MAGIC_OUTPUT_CAN_BE_SILENCED, False):
File ~/work/spatialpandas/spatialpandas/.pixi/envs/test-312/lib/python3.12/site-packages/IPython/core/magics/execution.py:1185, in ExecutionMagics.timeit(self, line, cell, local_ns)
1183 for index in range(0, 10):
1184 number = 10 ** index
-> 1185 time_number = timer.timeit(number)
1186 if time_number >= 0.2:
1187 break
File ~/work/spatialpandas/spatialpandas/.pixi/envs/test-312/lib/python3.12/site-packages/IPython/core/magics/execution.py:173, in Timer.timeit(self, number)
171 gc.disable()
172 try:
--> 173 timing = self.inner(it, self.timer)
174 finally:
175 if gcold:
File <magic-timeit>:1, in inner(_it, _timer)
File ~/work/spatialpandas/spatialpandas/.pixi/envs/test-312/lib/python3.12/site-packages/dask/dataframe/core.py:4921, in DataFrame.__len__(self)
4919 return super().__len__()
4920 else:
-> 4921 return len(s)
File ~/work/spatialpandas/spatialpandas/.pixi/envs/test-312/lib/python3.12/site-packages/dask/dataframe/core.py:1011, in _Frame.__len__(self)
1008 def __len__(self):
1009 return �[38;
|
unit:test-312:ubuntu-latest
Process completed with exit code 1.
|
unit:test-39:ubuntu-latest:
examples/Overview.ipynb#L1
examples/Overview.ipynb::Cell 40
Notebook cell execution failed
Cell 40: Cell execution caused an exception
Input:
%%timeit
len(sjoin(cities_large_df, world_df))
Traceback:
---------------------------------------------------------------------------
ValueError Traceback (most recent call last)
Cell In[1], line 1
----> 1 get_ipython().run_cell_magic('timeit', '', 'len(sjoin(cities_large_df, world_df))\n')
File ~/work/spatialpandas/spatialpandas/.pixi/envs/test-39/lib/python3.9/site-packages/IPython/core/interactiveshell.py:2517, in InteractiveShell.run_cell_magic(self, magic_name, line, cell)
2515 with self.builtin_trap:
2516 args = (magic_arg_s, cell)
-> 2517 result = fn(*args, **kwargs)
2519 # The code below prevents the output from being displayed
2520 # when using magics with decorator @output_can_be_silenced
2521 # when the last Python token in the expression is a ';'.
2522 if getattr(fn, magic.MAGIC_OUTPUT_CAN_BE_SILENCED, False):
File ~/work/spatialpandas/spatialpandas/.pixi/envs/test-39/lib/python3.9/site-packages/IPython/core/magics/execution.py:1185, in ExecutionMagics.timeit(self, line, cell, local_ns)
1183 for index in range(0, 10):
1184 number = 10 ** index
-> 1185 time_number = timer.timeit(number)
1186 if time_number >= 0.2:
1187 break
File ~/work/spatialpandas/spatialpandas/.pixi/envs/test-39/lib/python3.9/site-packages/IPython/core/magics/execution.py:173, in Timer.timeit(self, number)
171 gc.disable()
172 try:
--> 173 timing = self.inner(it, self.timer)
174 finally:
175 if gcold:
File <magic-timeit>:1, in inner(_it, _timer)
File ~/work/spatialpandas/spatialpandas/spatialpandas/tools/sjoin.py:88, in sjoin(left_df, right_df, how, op, lsuffix, rsuffix)
86 # Perform sjoin
87 if isinstance(left_df, GeoDataFrame):
---> 88 return _sjoin_pandas_pandas(
89 left_df, right_df, how=how, op=op, lsuffix=lsuffix, rsuffix=�[3
|
unit:test-39:ubuntu-latest:
examples/Overview.ipynb#L1
examples/Overview.ipynb::Cell 41
Notebook cell execution failed
Cell 41: Cell execution caused an exception
Input:
%%timeit
len(sjoin(cities_large_ddf, world_df))
Traceback:
---------------------------------------------------------------------------
ValueError Traceback (most recent call last)
Cell In[1], line 1
----> 1 get_ipython().run_cell_magic('timeit', '', 'len(sjoin(cities_large_ddf, world_df))\n')
File ~/work/spatialpandas/spatialpandas/.pixi/envs/test-39/lib/python3.9/site-packages/IPython/core/interactiveshell.py:2517, in InteractiveShell.run_cell_magic(self, magic_name, line, cell)
2515 with self.builtin_trap:
2516 args = (magic_arg_s, cell)
-> 2517 result = fn(*args, **kwargs)
2519 # The code below prevents the output from being displayed
2520 # when using magics with decorator @output_can_be_silenced
2521 # when the last Python token in the expression is a ';'.
2522 if getattr(fn, magic.MAGIC_OUTPUT_CAN_BE_SILENCED, False):
File ~/work/spatialpandas/spatialpandas/.pixi/envs/test-39/lib/python3.9/site-packages/IPython/core/magics/execution.py:1185, in ExecutionMagics.timeit(self, line, cell, local_ns)
1183 for index in range(0, 10):
1184 number = 10 ** index
-> 1185 time_number = timer.timeit(number)
1186 if time_number >= 0.2:
1187 break
File ~/work/spatialpandas/spatialpandas/.pixi/envs/test-39/lib/python3.9/site-packages/IPython/core/magics/execution.py:173, in Timer.timeit(self, number)
171 gc.disable()
172 try:
--> 173 timing = self.inner(it, self.timer)
174 finally:
175 if gcold:
File <magic-timeit>:1, in inner(_it, _timer)
File ~/work/spatialpandas/spatialpandas/.pixi/envs/test-39/lib/python3.9/site-packages/dask/dataframe/core.py:4921, in DataFrame.__len__(self)
4919 return super().__len__()
4920 else:
-> 4921 return len(s)
File ~/work/spatialpandas/spatialpandas/.pixi/envs/test-39/lib/python3.9/site-packages/dask/dataframe/core.py:1009, in _Frame.__len__(self)
1008 def __len__(self):
-> 1009 return se
|
unit:test-39:ubuntu-latest
Process completed with exit code 1.
|
unit:test-312:windows-latest:
examples\Overview.ipynb#L1
examples\Overview.ipynb::Cell 40
Notebook cell execution failed
Cell 40: Cell execution caused an exception
Input:
%%timeit
len(sjoin(cities_large_df, world_df))
Traceback:
---------------------------------------------------------------------------
ValueError Traceback (most recent call last)
Cell In[1], line 1
----> 1 get_ipython().run_cell_magic('timeit', '', 'len(sjoin(cities_large_df, world_df))\n')
File D:\a\spatialpandas\spatialpandas\.pixi\envs\test-312\Lib\site-packages\IPython\core\interactiveshell.py:2541, in InteractiveShell.run_cell_magic(self, magic_name, line, cell)
2539 with self.builtin_trap:
2540 args = (magic_arg_s, cell)
-> 2541 result = fn(*args, **kwargs)
2543 # The code below prevents the output from being displayed
2544 # when using magics with decorator @output_can_be_silenced
2545 # when the last Python token in the expression is a ';'.
2546 if getattr(fn, magic.MAGIC_OUTPUT_CAN_BE_SILENCED, False):
File D:\a\spatialpandas\spatialpandas\.pixi\envs\test-312\Lib\site-packages\IPython\core\magics\execution.py:1185, in ExecutionMagics.timeit(self, line, cell, local_ns)
1183 for index in range(0, 10):
1184 number = 10 ** index
-> 1185 time_number = timer.timeit(number)
1186 if time_number >= 0.2:
1187 break
File D:\a\spatialpandas\spatialpandas\.pixi\envs\test-312\Lib\site-packages\IPython\core\magics\execution.py:173, in Timer.timeit(self, number)
171 gc.disable()
172 try:
--> 173 timing = self.inner(it, self.timer)
174 finally:
175 if gcold:
File <magic-timeit>:1, in inner(_it, _timer)
File D:\a\spatialpandas\spatialpandas\spatialpandas\tools\sjoin.py:88, in sjoin(left_df, right_df, how, op, lsuffix, rsuffix)
86 # Perform sjoin
87 if isinstance(left_df, GeoDataFrame):
---> 88 return _sjoin_pandas_pandas(
89 left_df, right_df, how=how, op=op, lsuffix=lsuffix, rsuffix=rsuffix
|
unit:test-312:windows-latest:
examples\Overview.ipynb#L1
examples\Overview.ipynb::Cell 41
Notebook cell execution failed
Cell 41: Cell execution caused an exception
Input:
%%timeit
len(sjoin(cities_large_ddf, world_df))
Traceback:
---------------------------------------------------------------------------
ValueError Traceback (most recent call last)
Cell In[1], line 1
----> 1 get_ipython().run_cell_magic('timeit', '', 'len(sjoin(cities_large_ddf, world_df))\n')
File D:\a\spatialpandas\spatialpandas\.pixi\envs\test-312\Lib\site-packages\IPython\core\interactiveshell.py:2541, in InteractiveShell.run_cell_magic(self, magic_name, line, cell)
2539 with self.builtin_trap:
2540 args = (magic_arg_s, cell)
-> 2541 result = fn(*args, **kwargs)
2543 # The code below prevents the output from being displayed
2544 # when using magics with decorator @output_can_be_silenced
2545 # when the last Python token in the expression is a ';'.
2546 if getattr(fn, magic.MAGIC_OUTPUT_CAN_BE_SILENCED, False):
File D:\a\spatialpandas\spatialpandas\.pixi\envs\test-312\Lib\site-packages\IPython\core\magics\execution.py:1185, in ExecutionMagics.timeit(self, line, cell, local_ns)
1183 for index in range(0, 10):
1184 number = 10 ** index
-> 1185 time_number = timer.timeit(number)
1186 if time_number >= 0.2:
1187 break
File D:\a\spatialpandas\spatialpandas\.pixi\envs\test-312\Lib\site-packages\IPython\core\magics\execution.py:173, in Timer.timeit(self, number)
171 gc.disable()
172 try:
--> 173 timing = self.inner(it, self.timer)
174 finally:
175 if gcold:
File <magic-timeit>:1, in inner(_it, _timer)
File D:\a\spatialpandas\spatialpandas\.pixi\envs\test-312\Lib\site-packages\dask\dataframe\core.py:4921, in DataFrame.__len__(self)
4919 return super().__len__()
4920 else:
-> 4921 return len(s)
File D:\a\spatialpandas\spatialpandas\.pixi\envs\test-312\Lib\site-packages\dask\dataframe\core.py:1011, in _Frame.__len__(self)
1008 def __len__(self):
1009 return self.reduction�[4
|
unit:test-312:windows-latest
Process completed with exit code 1.
|
unit:test-39:windows-latest:
examples\Overview.ipynb#L1
examples\Overview.ipynb::Cell 40
Notebook cell execution failed
Cell 40: Cell execution caused an exception
Input:
%%timeit
len(sjoin(cities_large_df, world_df))
Traceback:
---------------------------------------------------------------------------
ValueError Traceback (most recent call last)
Cell In[1], line 1
----> 1 get_ipython().run_cell_magic('timeit', '', 'len(sjoin(cities_large_df, world_df))\n')
File D:\a\spatialpandas\spatialpandas\.pixi\envs\test-39\lib\site-packages\IPython\core\interactiveshell.py:2517, in InteractiveShell.run_cell_magic(self, magic_name, line, cell)
2515 with self.builtin_trap:
2516 args = (magic_arg_s, cell)
-> 2517 result = fn(*args, **kwargs)
2519 # The code below prevents the output from being displayed
2520 # when using magics with decorator @output_can_be_silenced
2521 # when the last Python token in the expression is a ';'.
2522 if getattr(fn, magic.MAGIC_OUTPUT_CAN_BE_SILENCED, False):
File D:\a\spatialpandas\spatialpandas\.pixi\envs\test-39\lib\site-packages\IPython\core\magics\execution.py:1185, in ExecutionMagics.timeit(self, line, cell, local_ns)
1183 for index in range(0, 10):
1184 number = 10 ** index
-> 1185 time_number = timer.timeit(number)
1186 if time_number >= 0.2:
1187 break
File D:\a\spatialpandas\spatialpandas\.pixi\envs\test-39\lib\site-packages\IPython\core\magics\execution.py:173, in Timer.timeit(self, number)
171 gc.disable()
172 try:
--> 173 timing = self.inner(it, self.timer)
174 finally:
175 if gcold:
File <magic-timeit>:1, in inner(_it, _timer)
File D:\a\spatialpandas\spatialpandas\spatialpandas\tools\sjoin.py:88, in sjoin(left_df, right_df, how, op, lsuffix, rsuffix)
86 # Perform sjoin
87 if isinstance(left_df, GeoDataFrame):
---> 88 return _sjoin_pandas_pandas(
89 left_df, right_df, how=how, op=op, lsuffix=lsuffix, rsuffix=rsuffix
90 )
91 elif isi
|
unit:test-39:windows-latest:
examples\Overview.ipynb#L1
examples\Overview.ipynb::Cell 41
Notebook cell execution failed
Cell 41: Cell execution caused an exception
Input:
%%timeit
len(sjoin(cities_large_ddf, world_df))
Traceback:
---------------------------------------------------------------------------
ValueError Traceback (most recent call last)
Cell In[1], line 1
----> 1 get_ipython().run_cell_magic('timeit', '', 'len(sjoin(cities_large_ddf, world_df))\n')
File D:\a\spatialpandas\spatialpandas\.pixi\envs\test-39\lib\site-packages\IPython\core\interactiveshell.py:2517, in InteractiveShell.run_cell_magic(self, magic_name, line, cell)
2515 with self.builtin_trap:
2516 args = (magic_arg_s, cell)
-> 2517 result = fn(*args, **kwargs)
2519 # The code below prevents the output from being displayed
2520 # when using magics with decorator @output_can_be_silenced
2521 # when the last Python token in the expression is a ';'.
2522 if getattr(fn, magic.MAGIC_OUTPUT_CAN_BE_SILENCED, False):
File D:\a\spatialpandas\spatialpandas\.pixi\envs\test-39\lib\site-packages\IPython\core\magics\execution.py:1185, in ExecutionMagics.timeit(self, line, cell, local_ns)
1183 for index in range(0, 10):
1184 number = 10 ** index
-> 1185 time_number = timer.timeit(number)
1186 if time_number >= 0.2:
1187 break
File D:\a\spatialpandas\spatialpandas\.pixi\envs\test-39\lib\site-packages\IPython\core\magics\execution.py:173, in Timer.timeit(self, number)
171 gc.disable()
172 try:
--> 173 timing = self.inner(it, self.timer)
174 finally:
175 if gcold:
File <magic-timeit>:1, in inner(_it, _timer)
File D:\a\spatialpandas\spatialpandas\.pixi\envs\test-39\lib\site-packages\dask\dataframe\core.py:4921, in DataFrame.__len__(self)
4919 return super().__len__()
4920 else:
-> 4921 return len(s)
File D:\a\spatialpandas\spatialpandas\.pixi\envs\test-39\lib\site-packages\dask\dataframe\core.py:1009, in _Frame.__len__(self)
1008 def __len__(self):
-> 1009 return self.reduction(
1010 len, �
|
unit:test-39:windows-latest
Process completed with exit code 1.
|
Artifacts
Produced during runtime
Name | Size | |
---|---|---|
pixi-lock
Expired
|
251 KB |
|