| Commit message (Collapse) | Author | Age | Files | Lines |
... | |
| | |
|
| |
| |
| | |
Co-authored-by: Eric Wieser <wieser.eric@gmail.com>
|
| | |
|
| |
| |
| | |
Co-authored-by: Eric Wieser <wieser.eric@gmail.com>
|
| |
| |
| | |
Co-authored-by: Eric Wieser <wieser.eric@gmail.com>
|
| | |
|
|/ |
|
|\
| |
| | |
BLD: check if std=c99 is really required
|
| | |
|
| | |
|
| | |
|
| | |
|
| | |
|
| |
| |
| | |
* Create copy of numpy.pxd for Cython 3.0 changes and improve it.
|
| | |
|
| | |
|
|/ |
|
|
|
| |
Remove f-strings from setup.py to allow for an informative error message for python<3.6 users. Closes #16345.
|
|
|
|
| |
Closes #16294.
|
|
|
|
|
|
|
|
| |
- Delete release note fragments from 1.19.0 (towncrier)
- Update 1.19.x release note (towncrier)
- Create 1.20.0-notes.rst for master development
- Update C-API versions for 1.20.x
- Update setup.py for 1.20.0
|
| |
|
|
|
|
| |
Signed-off-by: Changqing Li <changqing.li@windriver.com>
|
|
|
|
|
|
|
| |
* Cleanup unused imports (F401) of mostly standard Python modules,
or some internal but unlikely referenced modules
* Where internal imports are potentially used, mark with noqa
* Avoid redefinition of imports (F811)
|
|
|
|
| |
With reference to the issue MAINT: Use f-strings instead of other string formatting methods #15420
Updated setup.py with f-strings for better readability.
|
| |
|
| |
|
| |
|
|
|
|
|
| |
As numpy is Python 3 only, these import statements are now unnecessary
and don't alter runtime behavior.
|
|
|
|
|
|
|
| |
Apart from the usual modifications, this
- Removes a release note snippet added after towncrier was run
- Removes testing on Python 3.5 as it is dropped for 1.19.x.
|
| |
|
|
|
|
| |
MAINT: handle case where GIT_VERSION is empty string
|
| |
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Rationale: it has happened multiple times in the recent past that users
needed to use a more recent Cython than was used to generate the sdist
of the most recent release available on PyPI (e.g. for building with
a not-yet-released version of Python for which a Cython fix just
landed). The dependency specification and packaging tools have matured
to the point where it should be fine to require Cython to be installed.
Also, we have wheels (and conda-forge packages) for Windows, Linux and
macOS, so this change won't be visible at all to the average user.
Closes gh-13790
Also adds pyproject.toml to MANIFEST.in, it was missing.
|
| |
|
| |
|
|
|
|
| |
See also: #13880
|
|
|
|
|
|
| |
- Create release notes.
- Update pavement.py.
- Update setup.py
|
| |
|
|
|
|
|
|
|
| |
remove files that were part of the origal repo
rework randomgen docs to integrate with numpy and fix some links
remove convenience functions, require explicit call to gen.brng
move code out of numpy.random.randomgen into numpy.random
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
first cut at building randomgen
upgrade 'cythonize' and fix absolute imports to relative
define NPY_NO_DEPRECATED_API and fix other warnings
enable pgc64 by always using PCG_EMULATED_MATH
refactor so import randomgen works
add TODO comments for pcg64 improvements
fix imports, module name in setup.py; remove _testing
make cythonize non-recursive, restore examples to proper place
update to randomgen 7bca296c0b9
replace mtrand with LegacyGenerator, tweak for compatibility
port f879ef4 to fix GH10839
minimized difference between generator.pyx and _legacy.pyx
fix namespace in doctests, mark results that are random
update to randomgen commit 95c8cdd1c
Incorporate testing of edge cases into main tests
Rename test files to describe their purpose
Import import locations to reflect numpy paths
Correct tolerance on float32 tests
Remove set_printoptions
Remove complex normal
Remove future imports
Pull in BasicRNG source changes from original author
Small doc fixes
_mtrand => _rand
Improve consistency of nan handling
Prevent nans prducing values from int functions
add randomgen documentation to the tree
|
|
|
|
| |
Finally seems to make the GitHub license detection mechanism happy
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Reason: the GitHub license detection method relies on the LICENSE
file matching for at least 95% with a standard license.
Adding even one more sentence changes the license displayed in the
GitHub UI and also in the GitHub API that can be queried from
BSD to "other".
See https://github.com/numpy/numpy/issues/13447 for more
details.
Note that this split license is what GitHub recommends to do,
and is also what we do for wheels, where we append to the license
file at build time.
|
| |
|
| |
|
|
|
|
| |
These are used by PyPI and other services.
|
|
|
|
|
| |
* BLD: Fix minimum Python version in setup.py
See https://github.com/numpy/numpy/issues/12480 for discussion.
|
|
|
|
|
|
|
|
|
|
|
|
| |
- Create 1.17.0-notes
- Update index.rst for new notes
- Update pavement.py
- Update setup.py
- Remove Python 2.7 and 3.4 from CI testing.
- Add `# cython: language_level=3` to `*.pxd`, `*.pyx` files.
Note that this removes support for both Python2.7 and Python3.4 in
setup.py.
|
|\
| |
| | |
ENH: Use entry_points to install the f2py scripts.
|