Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Ignore pandas pyarrow warning #6609

Merged
merged 7 commits into from Jan 22, 2024
Merged
Show file tree
Hide file tree
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion napari/layers/utils/layer_utils.py
Expand Up @@ -844,7 +844,7 @@ def set_currents(
self._defaults = _validate_features(currents, num_data=1)
if update_indices is not None:
for k in self._defaults:
self._values[k][update_indices] = self._defaults[k][0]
self._values.loc[update_indices, k] = self._defaults[k][0]

def resize(
self,
Expand Down
1 change: 1 addition & 0 deletions pyproject.toml
Expand Up @@ -175,6 +175,7 @@ filterwarnings = [
"ignore:Alternative shading modes are only available in 3D, defaulting to none",
"ignore:distutils Version classes are deprecated::",
"ignore:There is no current event loop:DeprecationWarning:",
"ignore::DeprecationWarning:napari.layers.utils.layer_utils",
Czaki marked this conversation as resolved.
Show resolved Hide resolved
]
markers = [
"examples: Test of examples",
Expand Down
2 changes: 1 addition & 1 deletion resources/constraints/constraints_py3.10.txt
Expand Up @@ -268,7 +268,7 @@ packaging==23.2
# superqt
# vispy
# xarray
pandas==2.1.4 ; python_version >= "3.9"
pandas==2.2.0 ; python_version >= "3.9"
# via
# napari (napari_repo/setup.cfg)
# xarray
Expand Down