| Commit message (Collapse) | Author | Age | Files | Lines |
... | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
The relationship between frequency and position in the input array
is clarified.
|
| | | | | | | |
|
|\ \ \ \ \ \ \
| | | | | | | |
| | | | | | | | |
TST: Add initial appveyor configuration with no optimized BLAS.
|
| | |_|/ / / /
| |/| | | | | |
|
|\ \ \ \ \ \ \
| | | | | | | |
| | | | | | | | |
Remove Commented Out Code
|
|/ / / / / / / |
|
|\ \ \ \ \ \ \
| |/ / / / / /
|/| | | | | | |
DOC: No Print Statements When Using print_function from __future__
|
|/ / / / / /
| | | | | |
| | | | | |
| | | | | | |
Closes gh-6863.
|
|\ \ \ \ \ \
| |/ / / / /
|/| | | | | |
Fixup 6612, DOC: typo in the docstring of `random.multinomial`
|
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
Clarify that probabilities should be normalized.
[ci skip]
|
| |/ / / /
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
Discuss a loaded dice with six sides. Also add the
text about handling of input probabilities, as written
by Robert Kern in gh-6612.
[ci skip]
|
|\ \ \ \ \
| | | | | |
| | | | | | |
Fixup 6409, DOC, MAINT: Fix the numpy.ma.cov signature and documentation.
|
| |/ / / /
| | | | |
| | | | |
| | | | | |
The rowvar and bias parameters are booleans, not integers.
|
|\ \ \ \ \
| |/ / / /
|/| | | | |
DOC: fix method signatures in "array subclasses"
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
* Change ".. function::" -> ".. method::"
* Remove "self" argument
* Change "self" to "obj" in __array_finalize__
|
|\ \ \ \ \
| | | | | |
| | | | | | |
Stricter Argument Checking for Flatten Methods
|
|/ / / / /
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
The bug traces to the PyArray_OrderConverter
method in conversion_utils.c, where no errors
are thrown if the ORDER parameter passed in
is not of the string data-type or has a string
value of length greater than one. This commit
causes a DeprecationWarning to be raised, which
will later be turned into a TypeError or another
type of error in a future release.
Closes gh-6598.
|
|\ \ \ \ \
| | | | | |
| | | | | | |
STY: Break some long lines in numpy-for-matlab-users.rst.
|
|/ / / / / |
|
|\ \ \ \ \
| | | | | |
| | | | | | |
Fixup #6696, updates to f2py.compile
|
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
Add '.. versionadded:: 1.11.0' to the new `extension` parameter
in f2py.compile and document it in the 1.11.0 release notes.
|
|/ / / / /
| | | | |
| | | | |
| | | | |
| | | | | |
1. Verbose parameter was ignored earlier.
2. Allowed .f90 extensions for tempfiles
|
|\ \ \ \ \
| | | | | |
| | | | | | |
Rebase gh 6692, ENH: use linux fallocate to reserve diskspace in array.tofile
|
| | | | | | |
|
| | | | | | |
|
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
fallocate allows the filesystem to make smarter decisions about space
allocation and gives a fast failure path for insufficient space.
This is very important for filesystems that suffer a lot from
fragmentation like btrfs.
Restricted to linux only as that is the only system I know the behavior
of. Other systems might also have this system call but we don't want to
accidentally trigger explicit zeroing behavior as e.g. posix_fallocate
would when there is no support for a real fallocate.
|
|\ \ \ \ \ \
| |/ / / / /
|/| | | | | |
DOC: change uses of `rank` for `dimension`
|
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
We used to use ``rank`` to mean the number of axes in an array, but no
more. Change these uses of rank to refer to dimensions.
Closes gh-6839
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | | |
STY: Style fixes for .travis.yml and travis-upload-wheel.sh
|
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
* shell script style fixes inspired by google shell style guide
https://google.github.io/styleguide/shell.xml
* .travis.yml longline breaking tested with
http://yaml-online-parser.appspot.com/
|
|\ \ \ \ \ \ \
| | | | | | | |
| | | | | | | | |
BLD: use setuptools for bdist_egg distributions
|
| |/ / / / / /
| | | | | | |
| | | | | | | |
Not only bdist_wheel needs setuptools
|
|\ \ \ \ \ \ \
| | | | | | | |
| | | | | | | | |
DOC: Update future changes in the 1.11.0 release notes.
|
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
Support for Python 2.6, 3.2, and 3.3 will be dropped in Numpy 1.12.0.
[ci skip]
|
|\ \ \ \ \ \ \ \
| | | | | | | | |
| | | | | | | | | |
Minor Spelling and Grammar Corrections
|
| | |/ / / / / /
| |/| | | | | | |
|
|\ \ \ \ \ \ \ \
| |/ / / / / / /
|/| | | | | | | |
BUG: Fix use of python 3 only FileNotFoundError in test_f2py.
|
|/ / / / / / /
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
Also rewrite error messages so that they read more like warnings
than errors.
|
|\ \ \ \ \ \ \
| | | | | | | |
| | | | | | | | |
Fix travis ci 32 bit testing failures.
|
| | |/ / / / /
| |/| | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
Travis ci is migrating to GCI and the 32 bit tests broke in the process.
This cleans up the tools/travis-test script, fixes it for current
travis, and changes the 32 bit test to use python 2.7 in order to turn
up errors involving python long integers.
In preparation for dropping Python 3.2 and 3.3, the USE_DEBUG test is
run in the travis ci trusty beta so that python3 defaults to 3.4.
|
|\ \ \ \ \ \ \
| |/ / / / / /
|/| | | | | | |
Correct reference to Johnk's algorithm
|
|/ / / / / / |
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | | |
DOC: Fixes #6792 in numpy/numpy/random/mtrand/matrand.pyx
|
| | | | | | | |
|
|\ \ \ \ \ \ \
| | | | | | | |
| | | | | | | | |
MAINT: remove duplicate import in distutils.ccompiler
|
| | | | | | | | |
|
|\ \ \ \ \ \ \ \
| | | | | | | | |
| | | | | | | | | |
BENCH: speed up benchmark suite import time
|
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | | |
The input data generation in benchmarks/common.py takes ~ 1s, and it is
not used by most benchmarks. Generate it lazily instead, making sure the
generation is done in the setup() routines.
|
|\ \ \ \ \ \ \ \ \
| |/ / / / / / / /
|/| | | | | | | | |
CI: run benchmark suite in travis-CI
|
|/ / / / / / / /
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
This should ensure the suite stays in working condition, not to produce
reliable timing information.
|