You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
$ graph data.csv (...)
Traceback (most recent call last):
File "/opt/hostedtoolcache/Python/3.11.1/x64/bin/graph", line 8, in <module>
sys.exit(main.main())
^^^^^^^^^^^
File "/opt/hostedtoolcache/Python/3.11.1/x64/lib/python3.11/site-packages/graph_cli/main.py", line 17, in main
create_graph(graphs)
File "/opt/hostedtoolcache/Python/3.11.1/x64/lib/python3.11/site-packages/graph_cli/graph.py", line 317, in create_graph
ax.fill_between(graph.xcol, graph.ycol, alpha=0.1,
File "/opt/hostedtoolcache/Python/3.11.1/x64/lib/python3.11/site-packages/matplotlib/__init__.py", line 1423, in inner
return func(ax, *map(sanitize_sequence, args), **kwargs)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/opt/hostedtoolcache/Python/3.11.1/x64/lib/python3.11/site-packages/matplotlib/axes/_axes.py", line 5367, in fill_between
return self._fill_between_x_or_y(
^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/opt/hostedtoolcache/Python/3.11.1/x64/lib/python3.11/site-packages/matplotlib/axes/_axes.py", line 5272, in _fill_between_x_or_y
ind, dep1, dep2 = map(
^^^^^^^^^^^^^^^
File "/opt/hostedtoolcache/Python/3.11.1/x64/lib/python3.11/site-packages/numpy/ma/core.py", line 2360, in masked_invalid
return masked_where(~(np.isfinite(getdata(a))), a, copy=copy)
^^^^^^^^^^^^^^^^^^^^^^^
TypeError: ufunc 'isfinite' not supported for the input types, and the inputs could not be safely coerced to any supported types according to the casting rule ''safe''
Workaround is locking to previous numpy version, for example:
pip install graph-cli numpy==1.23.5
The text was updated successfully, but these errors were encountered:
Hi, there seems to be an incompatibility with yesterday released numpy 1.24.0.
Workaround is locking to previous numpy version, for example:
The text was updated successfully, but these errors were encountered: