summaryrefslogtreecommitdiff
path: root/numpy/_version.py
Commit message (Collapse)AuthorAgeFilesLines
* MAINT: Don't include "dirty" in versioneer generated versions.Charles Harris2022-10-151-1/+1
| | | | | | | | We patch the LICENSE file for both sdist and wheel releases, making them all "dirty", i.e., containing files that have not been committed. Having "dirty" in the product name is bad marketing and the versioneer tool does not have an option or style that will omit that bit of information, so patch the versioneer files to make that tag an empty string.
* MAINT: Update versioneer 0.19 → 0.26Dimitri Papadopoulos2022-10-151-47/+182
| | | | | | | Keep classic vendored mode. This update will shut up this codespell warning: unparseable ==> unparsable
* MAINT: Use with open()jakobjakobson132021-07-091-15/+14
|
* MAINT: Update master to main after branch rename (gh-18544)Stefan van der Walt2021-03-041-2/+1
| | | | | | | | | | | | | | | | | | | | | | | * Upload docs to main branch of neps/devdocs * Update `master` to `main` to be consistent with current state of renaming * Remove badges from README * Replace remaining instances of `master` with `main` * Add back logo * Fix CircleCI branch checks * Fix GA branch name * master->main in issue templates. * master->main for 2 links to numpy archive. * Change master to main in NEP 23 Co-authored-by: Ross Barnowski <rossbar@berkeley.edu>
* MAINT: Don't include "dirty" in versioneer generated versions.Charles Harris2020-12-101-1/+1
| | | | | | | | We patch the LICENSE file for both sdist and wheel releases, making them all "dirty", i.e., containing files that have not been committed. Having "dirty" in the product name is bad marketing and the versioneer tool does not have an option or style that will omit that bit of information, so patch the versioneer files to make that tag an empty string.
* ENH: Use versioneer to manage numpy versions.Charles Harris2020-12-081-0/+525
The new tags look like '1.21.0.dev0+98.gaa0453721f', where '98' is the number of commits since the 1.21.0 branch was started and 'aa0453721f'. The chosen form may be specified in the 'setup.cfg' file. This PR adds two new files 'numpy/_version.py' and 'numpy/version.py'. The latter is kept because it is part of the public API and is actually used by some downstream projects, but it is no longer dynamically created. See https://github.com/python-versioneer/python-versioneer/ for more information.