diff options
| author | robot-piglet <[email protected]> | 2025-08-10 17:17:37 +0300 |
|---|---|---|
| committer | robot-piglet <[email protected]> | 2025-08-10 17:28:22 +0300 |
| commit | df176eba17b24b3f0608af7092ff43aca151c51f (patch) | |
| tree | d4978c509ccadef2cae5fdeee2971c87a4ab4d92 /contrib/python/contourpy | |
| parent | 77c923e6d7da339a276f766303609d1ac16d31bb (diff) | |
Intermediate changes
commit_hash:1bc25a2467b089d6225e600f09c6caec829627b1
Diffstat (limited to 'contrib/python/contourpy')
| -rw-r--r-- | contrib/python/contourpy/.dist-info/METADATA | 10 | ||||
| -rw-r--r-- | contrib/python/contourpy/contourpy/__init__.py | 4 | ||||
| -rw-r--r-- | contrib/python/contourpy/contourpy/_version.py | 2 | ||||
| -rw-r--r-- | contrib/python/contourpy/contourpy/util/bokeh_renderer.py | 8 | ||||
| -rw-r--r-- | contrib/python/contourpy/contourpy/util/mpl_renderer.py | 2 | ||||
| -rw-r--r-- | contrib/python/contourpy/ya.make | 2 |
6 files changed, 14 insertions, 14 deletions
diff --git a/contrib/python/contourpy/.dist-info/METADATA b/contrib/python/contourpy/.dist-info/METADATA index 4f04341e810..68529fbd400 100644 --- a/contrib/python/contourpy/.dist-info/METADATA +++ b/contrib/python/contourpy/.dist-info/METADATA @@ -1,6 +1,6 @@ Metadata-Version: 2.1 Name: contourpy -Version: 1.3.2 +Version: 1.3.3 Summary: Python library for calculating contours of 2D quadrilateral grids Author-Email: Ian Thomas <[email protected]> License: BSD 3-Clause License @@ -39,10 +39,10 @@ Classifier: Intended Audience :: Science/Research Classifier: License :: OSI Approved :: BSD License Classifier: Programming Language :: C++ Classifier: Programming Language :: Python :: 3 -Classifier: Programming Language :: Python :: 3.10 Classifier: Programming Language :: Python :: 3.11 Classifier: Programming Language :: Python :: 3.12 Classifier: Programming Language :: Python :: 3.13 +Classifier: Programming Language :: Python :: 3.14 Classifier: Topic :: Scientific/Engineering :: Information Analysis Classifier: Topic :: Scientific/Engineering :: Mathematics Classifier: Topic :: Scientific/Engineering :: Visualization @@ -50,8 +50,8 @@ Project-URL: Homepage, https://github.com/contourpy/contourpy Project-URL: Changelog, https://contourpy.readthedocs.io/en/latest/changelog.html Project-URL: Documentation, https://contourpy.readthedocs.io Project-URL: Repository, https://github.com/contourpy/contourpy -Requires-Python: >=3.10 -Requires-Dist: numpy>=1.23 +Requires-Python: >=3.11 +Requires-Dist: numpy>=1.25 Provides-Extra: docs Requires-Dist: furo; extra == "docs" Requires-Dist: sphinx>=7.2; extra == "docs" @@ -63,7 +63,7 @@ Provides-Extra: mypy Requires-Dist: contourpy[bokeh,docs]; extra == "mypy" Requires-Dist: bokeh; extra == "mypy" Requires-Dist: docutils-stubs; extra == "mypy" -Requires-Dist: mypy==1.15.0; extra == "mypy" +Requires-Dist: mypy==1.17.0; extra == "mypy" Requires-Dist: types-Pillow; extra == "mypy" Provides-Extra: test Requires-Dist: contourpy[test-no-images]; extra == "test" diff --git a/contrib/python/contourpy/contourpy/__init__.py b/contrib/python/contourpy/contourpy/__init__.py index 33c1f014b86..82d578db2fc 100644 --- a/contrib/python/contourpy/contourpy/__init__.py +++ b/contrib/python/contourpy/contourpy/__init__.py @@ -77,8 +77,8 @@ def _remove_z_mask( z_array = np.ma.asarray(z, dtype=np.float64) # type: ignore[no-untyped-call] z_masked = np.ma.masked_invalid(z_array, copy=False) # type: ignore[no-untyped-call] - if np.ma.is_masked(z_masked): # type: ignore[no-untyped-call] - mask = np.ma.getmask(z_masked) # type: ignore[no-untyped-call] + if np.ma.is_masked(z_masked): + mask = np.ma.getmask(z_masked) else: mask = None diff --git a/contrib/python/contourpy/contourpy/_version.py b/contrib/python/contourpy/contourpy/_version.py index f708a9b201c..7b1e3120075 100644 --- a/contrib/python/contourpy/contourpy/_version.py +++ b/contrib/python/contourpy/contourpy/_version.py @@ -1 +1 @@ -__version__ = "1.3.2" +__version__ = "1.3.3" diff --git a/contrib/python/contourpy/contourpy/util/bokeh_renderer.py b/contrib/python/contourpy/contourpy/util/bokeh_renderer.py index 6079ac3c755..f80e93e9e4e 100644 --- a/contrib/python/contourpy/contourpy/util/bokeh_renderer.py +++ b/contrib/python/contourpy/contourpy/util/bokeh_renderer.py @@ -65,12 +65,12 @@ class BokehRenderer(Renderer): backend: OutputBackendType = "svg" if self._want_svg else "canvas" for _ in range(nfigures): fig = figure(output_backend=backend) - fig.xgrid.visible = False # type: ignore[attr-defined] - fig.ygrid.visible = False # type: ignore[attr-defined] + fig.xgrid.visible = False + fig.ygrid.visible = False self._figures.append(fig) if not show_frame: fig.outline_line_color = None - fig.axis.visible = False # type: ignore[attr-defined] + fig.axis.visible = False self._layout = gridplot( self._figures, ncols=ncols, toolbar_location=None, # type: ignore[arg-type] @@ -218,7 +218,7 @@ class BokehRenderer(Renderer): ax (int or Bokeh Figure, optional): Which plot to use, default ``0``. color (str, optional): Circle color, default ``"black"``. """ - mask = np.ma.getmask(z) # type: ignore[no-untyped-call] + mask = np.ma.getmask(z) if mask is np.ma.nomask: return fig = self._get_figure(ax) diff --git a/contrib/python/contourpy/contourpy/util/mpl_renderer.py b/contrib/python/contourpy/contourpy/util/mpl_renderer.py index d648cadebff..7c39b31ae88 100644 --- a/contrib/python/contourpy/contourpy/util/mpl_renderer.py +++ b/contrib/python/contourpy/contourpy/util/mpl_renderer.py @@ -213,7 +213,7 @@ class MplRenderer(Renderer): ax (int or Matplotlib Axes, optional): Which Axes to plot on, default ``0``. color (str, optional): Circle color, default ``"black"``. """ - mask = np.ma.getmask(z) # type: ignore[no-untyped-call] + mask = np.ma.getmask(z) if mask is np.ma.nomask: return ax = self._get_ax(ax) diff --git a/contrib/python/contourpy/ya.make b/contrib/python/contourpy/ya.make index 9bb59dbc8c3..b5edb3a4a8d 100644 --- a/contrib/python/contourpy/ya.make +++ b/contrib/python/contourpy/ya.make @@ -2,7 +2,7 @@ PY3_LIBRARY() -VERSION(1.3.2) +VERSION(1.3.3) LICENSE(BSD-3-Clause) |
