Файловый менеджер - Редактировать - /opt/imh-python/lib/python3.9/site-packages/numpy/tests/__pycache__/test_numpy_version.cpython-39.pyc
Ðазад
a e�h� � @ s4 d Z ddlZddlZddlmZ dd� Zdd� ZdS )aY Check the numpy version is valid. Note that a development version is marked by the presence of 'dev0' or '+' in the version string, all else is treated as a release. The version string itself is set from the output of ``git describe`` which relies on tags. Examples -------- Valid Development: 1.22.0.dev0 1.22.0.dev0+5-g7999db4df2 1.22.0+5-g7999db4df2 Valid Release: 1.21.0.rc1, 1.21.0.b1, 1.21.0 Invalid: 1.22.0.dev, 1.22.0.dev0-5-g7999db4dfB, 1.21.0.d1, 1.21.a Note that a release is determined by the version string, which in turn is controlled by the result of the ``git describe`` command. � N)�assert_c C s2 d} d}t �| | d tj�}t|d utj� d S )Nz/^[0-9]+\.[0-9]+\.[0-9]+(a[0-9]|b[0-9]|rc[0-9])?z'(\.dev[0-9]+(\+git[0-9]+\.[0-9a-f]+)?)?�$)�re�match�np�__version__r )Zversion_patternZ dev_suffix�res� r ��/root/rpmbuild/BUILDROOT/imh-python39-modules-3.9.7-92.el8.x86_64/opt/imh-python/lib/python3.9/site-packages/numpy/tests/test_numpy_version.py�test_valid_numpy_version s r c C s@ t jjrtt jt jjkd� ntt j�d�d t jjkd� d S )Nz)short_version mismatch in release version�+r z-short_version mismatch in development version)r �version�releaser r Z short_version�splitr r r r �test_short_version"