Files
geMoldInsight/venv/lib/python3.11/site-packages/pyvista/_version.py
T

23 lines
437 B
Python
Raw Normal View History

2026-02-12 23:22:11 +08:00
"""Version info for pyvista.
On the ``main`` branch, use 'dev0' to denote a development version.
For example:
version_info = 0, 27, 'dev0'
When generating pre-release wheels, use '0rcN', for example:
version_info = 0, 28, '0rc1'
Denotes the first release candidate.
"""
# major, minor, patch
from __future__ import annotations
version_info = 0, 46, 4
# Nice string for the version
__version__ = '.'.join(map(str, version_info))