Coverage for /pythoncovmergedfiles/medio/medio/usr/local/lib/python3.11/site-packages/numpy/version.py: 88%

Shortcuts on this page

r m x   toggle line displays

j k   next/prev highlighted chunk

0   (zero) top of page

1   (one) first highlighted chunk

8 statements  

1 

2""" 

3Module to expose more detailed version info for the installed `numpy` 

4""" 

5version = "2.3.0" 

6__version__ = version 

7full_version = version 

8 

9git_revision = "0532af47d6a815298b7841de00bdbc547104b237" 

10release = 'dev' not in version and '+' not in version 

11short_version = version.split("+")[0]