summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* MAINT: Bump hypothesis from 6.3.4 to 6.6.0dependabot/pip/hypothesis-6.6.0dependabot-preview[bot]2021-03-081-1/+1
| | | | | | | Bumps [hypothesis](https://github.com/HypothesisWorks/hypothesis) from 6.3.4 to 6.6.0. - [Release notes](https://github.com/HypothesisWorks/hypothesis/releases) - [Commits](https://github.com/HypothesisWorks/hypothesis/compare/hypothesis-python-6.3.4...hypothesis-python-6.6.0) Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
* Merge pull request #18572 from seberg/ci-devdoc-branchCharles Harris2021-03-071-1/+3
|\ | | | | CI: Do not pass original branch name to `git branch -m main`
| * CI: Do not pass original branch name to `git branch -m main`Sebastian Berg2021-03-071-1/+3
|/ | | | | | | | | | | Should fix the current failure that "master" does not exist. I am a bit curious why master does not exist, maybe the CircleCI git is set up to use some other default. Move the branch rename to after the commit, to make sure that the fact that the branch is empty (and `git branch` also) cannot influence the result. [ci-skip]
* Merge pull request #18570 from seberg/ci-devdoc-branchCharles Harris2021-03-071-1/+2
|\ | | | | CI: Use `git branch -m` instead of `--initial-branch=main`
| * CI: Use `git branch -m` instead of `--initial-branch=main`Sebastian Berg2021-03-071-1/+2
|/ | | | | | It seems the git in the CircleCI environment does not have the `--initial-branch` option that my local git has, hopefully `git branch -m` works fine.
* Merge pull request #18439 from WarrenWeckesser/random-choice-excCharles Harris2021-03-071-4/+6
|\ | | | | MAINT: random: Use 'from exc' when raising a ValueError in choice.
| * MAINT: random: use 'from exc' instead of 'from None'; tweak error messages.Warren Weckesser2021-02-191-7/+7
| |
| * MAINT: random: Use 'from None' when raising a ValueError in choice.Warren Weckesser2021-02-181-3/+5
| | | | | | | | | | | | | | | | Use 'from None' when the ValueError is raised when the first argument to `choice` is not an array and not an integer. Also fix the error message for the ValueError, and add a missing space to two other error messages.
* | Merge pull request #18569 from seberg/ci-devdoc-branchCharles Harris2021-03-071-1/+1
|\ \ | | | | | | CI: Ensure that doc-build uses "main" as branch name
| * | CI: Ensure that doc-build uses "main" as branch nameSebastian Berg2021-03-071-1/+1
|/ / | | | | | | | | | | | | | | The default of git is still "master", so we need to set `--initial-branch=main` to ensure that we use the name `main` that is used in the devdoc repository. Closes gh-18568
* | CI: skip lint check on merges with main (#18567)Ralf Gommers2021-03-071-1/+1
| | | | | | There's no lint diff, so the check should not run
* | CI: another master -> main fix (#18566)Ralf Gommers2021-03-072-2/+2
| |
* | Merge pull request #18423 from ganesh-k13/enh_lintRalf Gommers2021-03-076-11/+156
|\ \ | | | | | | ENH: Lint checks for PR diffs
| * | MAINT: Replaced master with mainGanesh Kathiresan2021-03-072-3/+3
| | |
| * | ENH, MAINT: Added runtest options | Added unified diffGanesh Kathiresan2021-03-072-2/+34
| | |
| * | MAINT: Use linter_requirementsGanesh Kathiresan2021-03-071-3/+1
| | |
| * | ENH: Added github actionsGanesh Kathiresan2021-03-072-11/+31
| | |
| * | MAINT: Changed branch argument to take target branchGanesh Kathiresan2021-03-072-5/+5
| | |
| * | MAINT: Added exception handling and docsGanesh Kathiresan2021-03-071-3/+13
| | |
| * | BLD: Added linting checkGanesh Kathiresan2021-03-071-0/+20
| | |
| * | ENH: Added uncommitted changes supportGanesh Kathiresan2021-03-071-6/+14
| | |
| * | ENH: Added Linter scriptGanesh Kathiresan2021-03-072-0/+57
|/ /
* | Merge pull request #18454 from rgommers/nep-spending-fundsMatti Picus2021-03-061-0/+458
|\ \ | | | | | | NEP: add Spending NumPy Project Funds (NEP 48)
| * | DOC: address remaining review commentsRalf Gommers2021-03-061-5/+9
| | | | | | | | | | | | [ci skip]
| * | DOC: address review comments on NEP 48Ralf Gommers2021-02-271-20/+49
| | |
| * | Add intro paragraph to Motivation and Scope to explain unrestricted fundingRalf Gommers2021-02-241-0/+4
| | | | | | | | | Co-authored-by: InessaPawson <albuscode@gmail.com>
| * | Commit textual suggestions from PR reviewRalf Gommers2021-02-241-11/+11
| | | | | | | | | | | | Co-authored-by: InessaPawson <albuscode@gmail.com> Co-authored-by: Matt Haberland <mhaberla@calpoly.edu>
| * | NEP: add Spending NumPy Project Funds draft - NEP 48Ralf Gommers2021-02-211-0/+421
| | |
* | | Merge pull request #18538 from kulinseth/18532_M1_build_fixMatti Picus2021-03-061-1/+1
|\ \ \ | | | | | | | | Fix the numpy Apple M1 build
| * | | Update pyproject.tomlKulin Seth2021-03-041-2/+1
| | | | | | | | | | | | Co-authored-by: Matti Picus <matti.picus@gmail.com>
| * | | 18532: Fix the numpy Apple M1 build.Kulin Seth2021-03-031-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | There was a build issue on numpy with M1: AssertionError: would build wheel with unsupported tag ('cp39', 'cp39', 'macosx_11_0_universal2') The issue was fixed in the packaging 20.5 and onwards, but that was not getting picked by setuptools. So explicitly adding this dependency in the toml file. The change was tested with: ``` python3 -m pip install --force-reinstall . ```
* | | | Merge pull request #18417 from BvB93/comparison5Ralf Gommers2021-03-064-29/+326
|\ \ \ \ | | | | | | | | | | ENH: Add dtype-support to the ufunc-based `ndarray` magic methods 4/4
| * | | | MAINT: Removed a redundant overloadBas van Beek2021-03-041-2/+0
| | | | |
| * | | | MAINT: Disallow `timedelta64 % integer`-based operationsBas van Beek2021-03-041-4/+4
| | | | | | | | | | | | | | | | | | | | `timedelta64` does not support the `__mod__` and `__divmod__` operations with integers and booleans
| * | | | TST: Add typing tests for the inplace `ndarray` magic methodsBas van Beek2021-03-042-6/+116
| | | | |
| * | | | ENH: Add dtype-support to the (ufunc-based) `ndarray` inplace magic methodsBas van Beek2021-03-041-12/+186
| | | | |
| * | | | TST: Improve a number of mypy-related exception messagesBas van Beek2021-03-041-7/+21
| | | | |
| * | | | TST: Validate the mypy exit-codeBas van Beek2021-03-041-1/+2
| | | | | | | | | | | | | | | | | | | | Any value other than 0 and 1 is indicative of some sort of crash
* | | | | Merge pull request #18539 from ExpHP/patch-1Ralf Gommers2021-03-061-2/+2
|\ \ \ \ \ | | | | | | | | | | | | BUG: NameError in numpy.distutils.fcompiler.compaq
| * | | | | BUG: NameError in numpy.distutils.fcompiler.compaqMichael Lamparski2021-03-031-2/+2
| | |/ / / | |/| | | | | | | | Fix a simple mistake in commit da0497fdf35 which can produce a NameError when installing numpy in MinGW/MSYS2.
* | | | | Merge pull request #18554 from charris/pin-docker-imageCharles Harris2021-03-051-3/+2
|\ \ \ \ \ | | | | | | | | | | | | CI: Pin docker image.
| * | | | | CI: Pin docker image.Charles Harris2021-03-051-3/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The azure-pipeline test Linux_Python_38_32bit_full_with_asserts has been failing after the release of the latest manylinux2010. Pin the docker image to an earlier version to fix this. Closes #18553.
* | | | | | Merge pull request #18418 from numpy/eric-wieser/fix-18321Matti Picus2021-03-051-7/+1
|\ \ \ \ \ \ | | | | | | | | | | | | | | DOC: remove layout overrides for headers
| * | | | | | DOC: remove layout overrides for headerseric-wieser/fix-18321Eric Wieser2021-02-151-7/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Addresses gh-18321. Also fixes a typo where `font-style` instead of `font-family` was used. Since the font boldness and letter-spacing choices were built on top of this mistake, they were removed too. If someone feels the pydata-sphinx-theme would look nicer with some layout tweaks, I would strongly encourage them to adjust the theme itself upstream.
* | | | | | | MAINT: Update master to main after branch rename (gh-18544)Stefan van der Walt2021-03-0436-104/+97
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * 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>
* | | | | | | Update azure-pipelines.yml for Azure PipelinesCharles Harris2021-03-041-1/+1
| |_|_|/ / / |/| | | | |
* | | | | | Merge pull request #18531 from charris/test-full-ciCharles Harris2021-03-031-1/+1
|\ \ \ \ \ \ | |_|_|/ / / |/| | | | | CI: Use Ubuntu 18.04 to run "full" test.
| * | | | | CI: Use Ubuntu 18.04 to run "full" test.Charles Harris2021-03-031-1/+1
| | |/ / / | |/| | | | | | | | | | | | | | | | | | | | | | | NumPy does not build using the `--coverage` flag on Ubuntu 20.04, the problem seems to be gcc 9.3.0-17. Work around that by running on Ubuntu 18.04 instead.
* | | | | Merge pull request #18537 from isuruf/arm64masterMatti Picus2021-03-031-1/+1
|\ \ \ \ \ | | | | | | | | | | | | [BLD] use the new openblas lib
| * | | | | use the new openblas libIsuru Fernando2021-03-031-1/+1
|/ / / / /