| Server IP : 209.209.40.120 / Your IP : 216.73.217.112 Web Server : Microsoft-IIS/10.0 System : Windows NT NEWWWW 10.0 build 17763 (Windows Server 2019) i586 User : NEWWWW$ ( 0) PHP Version : 8.3.30 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : C:/Python312/Lib/site-packages/numpy/tests/__pycache__/ |
Upload File : |
�
�g � �6 � d Z ddlZddlZddlmZ d� Zd� Zd� Zy)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 � � d} d}t j | |z dz t j � }t |d ut j � y )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 )�version_pattern�
dev_suffix�ress �@C:\Python312\Lib\site-packages\numpy/tests/test_numpy_version.py�test_valid_numpy_versionr s? � � I�O�;�J�
�(�(�?�Z�/�#�5�r�~�~�
F�C��C�t�O�R�^�^�,� c �2 � t j j r6t t j t j j
k( d� y t t j j
d� d t j j
k( d� y )Nz)short_version mismatch in release version�+r z-short_version mismatch in development version)r �version�releaser r �
short_version�split� r r
�test_short_versionr "