Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Where is the NumPy version string documented?

What are the possible NumPy version strings? What is the standard? Where is this documented?

1.4.0dev7059
1.4.0b1
1.4.0rc2

I've seen dev, b, rc.

like image 697
Tom Avatar asked May 09 '26 05:05

Tom


1 Answers

b, dev, rc signify beta, development release and release candidate, respectively. Some of this is documented in the Release Notes:

Version Number explanation:

1.0.X will be maintainence releases (modules will not need recompilation)

1.X will be major stable releases which might contain changes to the C-API and therefore might require re-compilation of extension modules

1.0.1.dev3432 indicates SVN version 3432 of the development release leading up to 1.0.1

1.1.dev3532 indicates SVN version 3532 of the development release leading up to 1.1

1.0b2.dev2952 indicates SVN version 2952 of the development release leading up to the second beta release of version 1.0

Also see the section titled "Version Numbering" in the State of Scipy (PDF) document, which specifies the <major.minor.bugfix> scheme. (More generally, the wikipedia article on Versioning may be useful.)

like image 162
ars Avatar answered May 11 '26 18:05

ars



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!