
    G/Ph                     8    d Z ddlZddlZddlmZ d Zd Zd ZdS )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   dz   t          j                  }t	          |d ut          j                   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   )version_pattern
dev_suffixress      ^/var/www/html/test/jupyter/venv/lib/python3.11/site-packages/numpy/tests/test_numpy_version.pytest_valid_numpy_versionr      sH     IO;J
(?Z/#5r~
F
FCCtOR^,,,,,    c                     t           j        j        r/t          t           j        t           j        j        k    d           d S t          t           j                            d          d         t           j        j        k    d           d S )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   "   s    	z A"*"::;	= 	= 	= 	= 	= 	$$S))!,
0HH?	A 	A 	A 	A 	Ar   c                      t          d t          t          j                  D                       } t          g d          }| |k    sJ d S )Nc                 <    g | ]}|                     d           |S )_)
startswith).0ss     r   
<listcomp>z'test_version_module.<locals>.<listcomp>-   s)    HHH!all36G6GHAHHHr   )full_versiongit_revisionr   r   r   )setdirr   r   )contentsexpecteds     r   test_version_moduler%   ,   s]    HHs2:HHHIIH     H xr   )	__doc__r   numpyr   numpy.testingr   r   r   r%   r   r   r   <module>r)      sr    " 
			     ! ! ! ! ! !- - -A A A
  
  
  
  
 r   