| Commit message (Collapse) | Author | Age | Files | Lines |
|\
| |
| | |
MAINT: Remove unsafe unions and ABCs from return-annotations
|
| |
| |
| |
| | |
E704 (multiple statements on one line (def)) is a style rule not prescribed by PEP8. Furthermore, because it demands a function body it is needlessly inconvenient for static type checking, i.e. situation where this is no function body.
|
| |
| |
| |
| | |
With the current tests system we cannot reasonably enforce E501 (maximum line length)
|
|/ |
|
| |
|
|
|
|
|
|
|
|
|
|
|
| |
Without any argument towncrier defaults to `build`. But towncrier
added a `--version` argument to just print the towncrier version.
NumPy relies on passing `--version` which collides. Even if
towncrier might revert the change, using `towncrier build` explicitly
just doesn't hurt.
Closes gh-18788
|
|
|
|
| |
It has been deprecated and removed for quite some time
|
|\
| |
| | |
MAINT: Add exception chaining where appropriate
|
| | |
|
| | |
|
| |\
| | |
| | |
| | | |
avo-exceptions-chaining
|
| | | |
|
| |/
|/| |
|
|\ \
| | |
| | | |
DEP: Formally deprecate `np.typeDict`
|
| | |
| | |
| | |
| | | |
`typeDict` is a deprecated alias for `sctypeDict` and has been so for >= 14 years (https://github.com/numpy/numpy/commit/668950285c407593a368336ff2e737c5da84af7d)
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
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]
|
| | |
| | |
| | |
| | |
| | |
| | | |
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.
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
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
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
* 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>
|
| | | |
|
| | |
| | |
| | | |
https://github.com/numpy/numpy/issues/18521
|
| |/
|/| |
|
| | |
|
| |
| |
| |
| | |
instead of mixing OS name and architecture into arch variable
|
| |
| |
| |
| | |
Missing `s` in two spellings.
|
| | |
|
|/ |
|
|
|
|
|
| |
Ref gh-18138, which has a confusing situation where the
correct version seems installed but this check still raises.
|
|
|
|
|
|
|
|
|
|
|
|
| |
... or when the input isn't/cannot be a set. I left a few usages, e.g.
in random sampling, where "set" is reasonable as informal description of
an array as the order doesn't matter; however, for e.g. np.gradient the
order of the returned list is clearly important, so "set" is wrong.
Also some other minor doc edits noticed during the grepping: using
`shape` instead of `form` in `cov` is consistent with most other places;
the wording in `Polynomial.trim` now matches other methods on the same
class.
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
* replace superfluous single-character regex character
classes with their literal string equivalents; this
avoids the overhead associated with a character class
when there's only a single character enclosed (so there's
no benefit to the class overhead)
* for more information see:
Chapter 6 of:
Friedl, Jeffrey. Mastering Regular Expressions. 3rd ed.,
O’Reilly Media, 2009.
|
|
|
|
| |
[travis skip]
|
| |
|
|\
| |
| | |
BLD: Enable Werror=undef in travis
|
| | |
|
| |
| |
| | |
`openblas64_-v0.3.10-win_amd64-gcc_7_1_0.zip` is already given in line 57
|
|/
|
|
|
|
|
|
|
|
| |
The flag should work with newer versions of Python.
- Use Ubuntu 20.04 to get Python 3.8 debug.
- Don't install libgfortran3, not needed, not available.
- Whitespace cleanup in action.yml and build_test.yml.
Closes #14293.
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
|
|
|
|
| |
- List dependences
- Give examples
|