Search is not available for this dataset
repo_id
stringlengths
12
110
file_path
stringlengths
24
164
content
stringlengths
3
89.3M
__index_level_0__
int64
0
0
public_repos/numpy/doc/source/f2py/code
public_repos/numpy/doc/source/f2py/code/results/array_session.dat
>>> import arr >>> from numpy import asfortranarray >>> print(arr.foo.__doc__) a = foo(a,[overwrite_a]) Wrapper for ``foo``. Parameters ---------- a : input rank-2 array('d') with bounds (n,m) Other Parameters ---------------- overwrite_a : input int, optional Default: 0 Returns ------- a : rank-2 array('d') wi...
0
public_repos/numpy/doc/source/f2py/code
public_repos/numpy/doc/source/f2py/code/results/ftype_session.dat
>>> import ftype >>> print(ftype.__doc__) This module 'ftype' is auto-generated with f2py (version:2). Functions: foo(n=13) COMMON blocks: /data/ a,x(3) . >>> type(ftype.foo), type(ftype.data) (<class 'fortran'>, <class 'fortran'>) >>> ftype.foo() IN FOO: N= 13 A= 0. X=[ 0. 0. 0.] >>> ftype.data.a = 3 >>> ftyp...
0
public_repos/numpy/doc/source/f2py/code
public_repos/numpy/doc/source/f2py/code/results/compile_session.dat
>>> import numpy.f2py >>> fsource = ''' ... subroutine foo ... print*, "Hello world!" ... end ... ''' >>> numpy.f2py.compile(fsource, modulename='hello', verbose=0) 0 >>> import hello >>> hello.foo() Hello world!
0
public_repos/numpy/doc/source/f2py/code
public_repos/numpy/doc/source/f2py/code/results/extcallback_session.dat
>>> import pfromf >>> pfromf.f2() Traceback (most recent call last): File "<stdin>", line 1, in <module> pfromf.error: Callback fpy not defined (as an argument or module pfromf attribute). >>> def f(): print("python f") ... >>> pfromf.fpy = f >>> pfromf.f2() in f2, calling f2py.. python f >>> pfromf.f1() in f1, c...
0
public_repos/numpy/doc/source/f2py/code
public_repos/numpy/doc/source/f2py/code/results/common_session.dat
>>> import common >>> print(common.data.__doc__) i : 'i'-scalar x : 'i'-array(4) a : 'f'-array(2,3) >>> common.data.i = 5 >>> common.data.x[1] = 2 >>> common.data.a = [[1,2,3],[4,5,6]] >>> common.foo() >>> common.foo() I= 5 X=[ 0 2 0 0 ] A=[ [ 1.00000000 , ...
0
public_repos/numpy/doc/source/f2py/code
public_repos/numpy/doc/source/f2py/code/results/asterisk1_session.dat
>>> import asterisk1 >>> asterisk1.foo1() b'123456789A12'
0
public_repos/numpy/doc/source/f2py/code
public_repos/numpy/doc/source/f2py/code/results/var_session.dat
>>> import var >>> var.BAR 5
0
public_repos/numpy/doc/source/f2py/code
public_repos/numpy/doc/source/f2py/code/results/scalar_session.dat
>>> import scalar >>> print(scalar.foo.__doc__) foo(a,b) Wrapper for ``foo``. Parameters ---------- a : input float b : in/output rank-0 array(float,'d') >>> scalar.foo(2, 3) A= 2. B= 3. INCREMENT A AND B NEW A= 3. B= 4. >>> import numpy >>> a = numpy.array(2) # these are integer rank-0 arrays >>> b...
0
public_repos/numpy/doc/source/f2py/code
public_repos/numpy/doc/source/f2py/code/results/spam_session.dat
>>> import spam >>> status = spam.system('whoami') pearu >>> status = spam.system('blah') sh: line 1: blah: command not found
0
public_repos/numpy/doc/source/f2py/code
public_repos/numpy/doc/source/f2py/code/results/asterisk2_session.dat
>>> import asterisk >>> asterisk.foo2(2) b'12' >>> asterisk.foo2(12) b'123456789A12' >>>
0
public_repos/numpy/doc/source/f2py/code
public_repos/numpy/doc/source/f2py/code/results/moddata_session.dat
>>> import moddata >>> print(moddata.mod.__doc__) i : 'i'-scalar x : 'i'-array(4) a : 'f'-array(2,3) b : 'f'-array(-1,-1), not allocated foo() Wrapper for ``foo``. >>> moddata.mod.i = 5 >>> moddata.mod.x[:2] = [1,2] >>> moddata.mod.a = [[1,2,3],[4,5,6]] >>> moddata.mod.foo() i= 5 x=[ ...
0
public_repos/numpy/doc/source/f2py/code
public_repos/numpy/doc/source/f2py/code/results/allocarr_session.dat
>>> import allocarr >>> print(allocarr.mod.__doc__) b : 'f'-array(-1,-1), not allocated foo() Wrapper for ``foo``. >>> allocarr.mod.foo() b is not allocated >>> allocarr.mod.b = [[1, 2, 3], [4, 5, 6]] # allocate/initialize b >>> allocarr.mod.foo() b=[ 1.000000 2.000000 3.000000 ...
0
public_repos/numpy/doc/source/f2py/code
public_repos/numpy/doc/source/f2py/code/results/callback_session.dat
>>> import callback >>> print(callback.foo.__doc__) r = foo(fun,[fun_extra_args]) Wrapper for ``foo``. Parameters ---------- fun : call-back function Other Parameters ---------------- fun_extra_args : input tuple, optional Default: () Returns ------- r : float Notes ----- Call-back functions:: def fun(i): r...
0
public_repos/numpy/doc/source/f2py/code
public_repos/numpy/doc/source/f2py/code/results/run_main_session.dat
>>> import numpy.f2py >>> r = numpy.f2py.run_main(['-m','scalar','doc/source/f2py/scalar.f']) Reading fortran codes... Reading file 'doc/source/f2py/scalar.f' (format:fix,strict) Post-processing... Block: scalar Block: FOO Building modules... Building module "scalar"... ...
0
public_repos/numpy/doc/source/f2py/code
public_repos/numpy/doc/source/f2py/code/results/calculate_session.dat
>>> import foo >>> foo.calculate(range(5), lambda x: x*x) array([ 0., 1., 4., 9., 16.]) >>> import math >>> foo.calculate(range(5), math.exp) array([ 1. , 2.71828183, 7.3890561, 20.08553692, 54.59815003])
0
public_repos/numpy/doc/source/f2py/code
public_repos/numpy/doc/source/f2py/code/results/string_session.dat
>>> import mystring >>> print(mystring.foo.__doc__) foo(a,b,c,d) Wrapper for ``foo``. Parameters ---------- a : input string(len=5) b : in/output rank-0 array(string(len=5),'c') c : input string(len=-1) d : in/output rank-0 array(string(len=-1),'c') >>> from numpy import array >>> a = array(b'123\0\0') >>> b = array...
0
public_repos/numpy/doc/source/f2py
public_repos/numpy/doc/source/f2py/buildtools/skbuild.rst
.. _f2py-skbuild: ============================ Using via ``scikit-build`` ============================ ``scikit-build`` provides two separate concepts geared towards the users of Python extension modules. 1. A ``setuptools`` replacement (legacy behaviour) 2. A series of ``cmake`` modules with definitions which help ...
0
public_repos/numpy/doc/source/f2py
public_repos/numpy/doc/source/f2py/buildtools/distutils.rst
.. _f2py-distutils: ============================= Using via `numpy.distutils` ============================= .. currentmodule:: numpy.distutils.core :mod:`numpy.distutils` is part of NumPy, and extends the standard Python ``distutils`` module to deal with Fortran sources and F2PY signature files, e.g. compile Fortran...
0
public_repos/numpy/doc/source/f2py
public_repos/numpy/doc/source/f2py/buildtools/meson.rst
.. _f2py-meson: =================== Using via ``meson`` =================== The key advantage gained by leveraging ``meson`` over the techniques described in :ref:`f2py-distutils` is that this feeds into existing systems and larger projects with ease. ``meson`` has a rather pythonic syntax which makes it more comfort...
0
public_repos/numpy/doc/source/f2py
public_repos/numpy/doc/source/f2py/buildtools/cmake.rst
.. _f2py-cmake: =================== Using via ``cmake`` =================== In terms of complexity, ``cmake`` falls between ``make`` and ``meson``. The learning curve is steeper since CMake syntax is not pythonic and is closer to ``make`` with environment variables. However, the trade-off is enhanced flexibility and...
0
public_repos/numpy/doc/source/f2py
public_repos/numpy/doc/source/f2py/buildtools/index.rst
.. _f2py-bldsys: ======================= F2PY and build systems ======================= In this section we will cover the various popular build systems and their usage with ``f2py``. .. note:: **As of November 2021** The default build system for ``F2PY`` has traditionally been through the enhanced ``numpy....
0
public_repos/numpy/doc/source
public_repos/numpy/doc/source/release/2.0.0-notes.rst
.. currentmodule:: numpy ========================= NumPy 2.0.0 Release Notes ========================= New functions ============= Matrix transpose support for ndarrays ------------------------------------- NumPy now offers support for calculating the matrix transpose of an array. The matrix transpose is equivalent...
0
public_repos/numpy/doc/source
public_repos/numpy/doc/source/release/1.13.3-notes.rst
========================== NumPy 1.13.3 Release Notes ========================== This is a bugfix release for some problems found since 1.13.1. The most important fixes are for CVE-2017-12852 and temporary elision. Users of earlier versions of 1.13 should upgrade. The Python versions supported are 2.7 and 3.4 - 3.6. ...
0
public_repos/numpy/doc/source
public_repos/numpy/doc/source/release/1.19.0-notes.rst
.. currentmodule:: numpy ========================== NumPy 1.19.0 Release Notes ========================== This NumPy release is marked by the removal of much technical debt: support for Python 2 has been removed, many deprecations have been expired, and documentation has been improved. The polishing of the random modu...
0
public_repos/numpy/doc/source
public_repos/numpy/doc/source/release/1.8.2-notes.rst
========================= NumPy 1.8.2 Release Notes ========================= This is a bugfix only release in the 1.8.x series. Issues fixed ============ * gh-4836: partition produces wrong results for multiple selections in equal ranges * gh-4656: Make fftpack._raw_fft threadsafe * gh-4628: incorrect argument orde...
0
public_repos/numpy/doc/source
public_repos/numpy/doc/source/release/1.10.0-notes.rst
========================== NumPy 1.10.0 Release Notes ========================== This release supports Python 2.6 - 2.7 and 3.2 - 3.5. Highlights ========== * numpy.distutils now supports parallel compilation via the --parallel/-j argument passed to setup.py build * numpy.distutils now supports additional customiz...
0
public_repos/numpy/doc/source
public_repos/numpy/doc/source/release/1.25.2-notes.rst
.. currentmodule:: numpy ========================== NumPy 1.25.2 Release Notes ========================== NumPy 1.25.2 is a maintenance release that fixes bugs and regressions discovered after the 1.25.1 release. This is the last planned release in the 1.25.x series, the next release will be 1.26.0, which will use the...
0
public_repos/numpy/doc/source
public_repos/numpy/doc/source/release/1.20.3-notes.rst
.. currentmodule:: numpy ========================== NumPy 1.20.3 Release Notes ========================== NumPy 1.20.3 is a bugfix release containing several fixes merged to the main branch after the NumPy 1.20.2 release. Contributors ============ A total of 7 people contributed to this release. People with a "+" ...
0
public_repos/numpy/doc/source
public_repos/numpy/doc/source/release/1.18.0-notes.rst
.. currentmodule:: numpy ========================== NumPy 1.18.0 Release Notes ========================== In addition to the usual bug fixes, this NumPy release cleans up and documents the new random C-API, expires a large number of old deprecations, and improves the appearance of the documentation. The Python versio...
0
public_repos/numpy/doc/source
public_repos/numpy/doc/source/release/1.9.1-notes.rst
========================= NumPy 1.9.1 Release Notes ========================= This is a bugfix only release in the 1.9.x series. Issues fixed ============ * gh-5184: restore linear edge behaviour of gradient to as it was in < 1.9. The second order behaviour is available via the `edge_order` keyword * gh-4007: work...
0
public_repos/numpy/doc/source
public_repos/numpy/doc/source/release/1.25.0-notes.rst
.. currentmodule:: numpy ========================== NumPy 1.25.0 Release Notes ========================== The NumPy 1.25.0 release continues the ongoing work to improve the handling and promotion of dtypes, increase the execution speed, and clarify the documentation. There has also been work to prepare for the future...
0
public_repos/numpy/doc/source
public_repos/numpy/doc/source/release/1.17.0-notes.rst
.. currentmodule:: numpy ========================== NumPy 1.17.0 Release Notes ========================== This NumPy release contains a number of new features that should substantially improve its performance and usefulness, see Highlights below for a summary. The Python versions supported are 3.5-3.7, note that Pyth...
0
public_repos/numpy/doc/source
public_repos/numpy/doc/source/release/1.20.2-notes.rst
.. currentmodule:: numpy ========================== NumPy 1.20.2 Release Notes ========================== NumPy 1.20.2 is a bugfix release containing several fixes merged to the main branch after the NumPy 1.20.1 release. Contributors ============ A total of 7 people contributed to this release. People with a "+" ...
0
public_repos/numpy/doc/source
public_repos/numpy/doc/source/release/1.12.0-notes.rst
========================== NumPy 1.12.0 Release Notes ========================== This release supports Python 2.7 and 3.4 - 3.6. Highlights ========== The NumPy 1.12.0 release contains a large number of fixes and improvements, but few that stand out above all others. That makes picking out the highlights somewhat arb...
0
public_repos/numpy/doc/source
public_repos/numpy/doc/source/release/1.17.5-notes.rst
.. currentmodule:: numpy ========================== NumPy 1.17.5 Release Notes ========================== This release contains fixes for bugs reported against NumPy 1.17.4 along with some build improvements. The Python versions supported in this release are 3.5-3.8. Downstream developers should use Cython >= 0.29.1...
0
public_repos/numpy/doc/source
public_repos/numpy/doc/source/release/1.15.3-notes.rst
========================== NumPy 1.15.3 Release Notes ========================== This is a bugfix release for bugs and regressions reported following the 1.15.2 release. The Python versions supported by this release are 2.7, 3.4-3.7. The wheels are linked with OpenBLAS v0.3.0, which should fix some of the linalg prob...
0
public_repos/numpy/doc/source
public_repos/numpy/doc/source/release/1.11.1-notes.rst
========================== NumPy 1.11.1 Release Notes ========================== Numpy 1.11.1 supports Python 2.6 - 2.7 and 3.2 - 3.5. It fixes bugs and regressions found in Numpy 1.11.0 and includes several build related improvements. Wheels for Linux, Windows, and OSX can be found on PyPI. Fixes Merged ============...
0
public_repos/numpy/doc/source
public_repos/numpy/doc/source/release/1.16.0-notes.rst
========================== NumPy 1.16.0 Release Notes ========================== This NumPy release is the last one to support Python 2.7 and will be maintained as a long term release with bug fixes until 2020. Support for Python 3.4 been dropped, the supported Python versions are 2.7 and 3.5-3.7. The wheels on PyPI ...
0
public_repos/numpy/doc/source
public_repos/numpy/doc/source/release/1.10.1-notes.rst
========================== NumPy 1.10.1 Release Notes ========================== This release deals with a few build problems that showed up in 1.10.0. Most users would not have seen these problems. The differences are: * Compiling with msvc9 or msvc10 for 32 bit Windows now requires SSE2. This was the easiest fix ...
0
public_repos/numpy/doc/source
public_repos/numpy/doc/source/release/1.7.1-notes.rst
========================= NumPy 1.7.1 Release Notes ========================= This is a bugfix only release in the 1.7.x series. It supports Python 2.4 - 2.7 and 3.1 - 3.3 and is the last series that supports Python 2.4 - 2.5. Issues fixed ============ * gh-2973: Fix `1` is printed during numpy.test() * gh-2983: BU...
0
public_repos/numpy/doc/source
public_repos/numpy/doc/source/release/1.14.2-notes.rst
========================== NumPy 1.14.2 Release Notes ========================== This is a bugfix release for some bugs reported following the 1.14.1 release. The major problems dealt with are as follows. * Residual bugs in the new array printing functionality. * Regression resulting in a relocation problem with shar...
0
public_repos/numpy/doc/source
public_repos/numpy/doc/source/release/1.10.4-notes.rst
========================== NumPy 1.10.4 Release Notes ========================== This release is a bugfix source release motivated by a segfault regression. No windows binaries are provided for this release, as there appear to be bugs in the toolchain we use to generate those files. Hopefully that problem will be fixe...
0
public_repos/numpy/doc/source
public_repos/numpy/doc/source/release/1.16.5-notes.rst
========================== NumPy 1.16.5 Release Notes ========================== The NumPy 1.16.5 release fixes bugs reported against the 1.16.4 release, and also backports several enhancements from master that seem appropriate for a release series that is the last to support Python 2.7. The wheels on PyPI are linked ...
0
public_repos/numpy/doc/source
public_repos/numpy/doc/source/release/1.19.3-notes.rst
.. currentmodule:: numpy ========================== NumPy 1.19.3 Release Notes ========================== NumPy 1.19.3 is a small maintenance release with two major improvements: - Python 3.9 binary wheels on all supported platforms. - OpenBLAS fixes for Windows 10 version 2004 fmod bug. This release supports Pytho...
0
public_repos/numpy/doc/source
public_repos/numpy/doc/source/release/1.21.0-notes.rst
.. currentmodule:: numpy ========================== NumPy 1.21.0 Release Notes ========================== The NumPy 1.21.0 release highlights are * continued SIMD work covering more functions and platforms, * initial work on the new dtype infrastructure and casting, * universal2 wheels for Python 3.8 and Python 3.9 o...
0
public_repos/numpy/doc/source
public_repos/numpy/doc/source/release/1.14.4-notes.rst
========================== NumPy 1.14.4 Release Notes ========================== This is a bugfix release for bugs reported following the 1.14.3 release. The most significant fixes are: * fixes for compiler instruction reordering that resulted in NaN's not being properly propagated in `np.max` and `np.min`, * fixe...
0
public_repos/numpy/doc/source
public_repos/numpy/doc/source/release/1.8.0-notes.rst
========================= NumPy 1.8.0 Release Notes ========================= This release supports Python 2.6 -2.7 and 3.2 - 3.3. Highlights ========== * New, no 2to3, Python 2 and Python 3 are supported by a common code base. * New, gufuncs for linear algebra, enabling operations on stacked arrays. * New, inpla...
0
public_repos/numpy/doc/source
public_repos/numpy/doc/source/release/template.rst
:orphan: ========================== NumPy 1.xx.x Release Notes ========================== Highlights ========== New functions ============= Deprecations ============ Future Changes ============== Expired deprecations ==================== Compatibility notes =================== C API changes =============...
0
public_repos/numpy/doc/source
public_repos/numpy/doc/source/release/1.13.2-notes.rst
========================== NumPy 1.13.2 Release Notes ========================== This is a bugfix release for some problems found since 1.13.1. The most important fixes are for CVE-2017-12852 and temporary elision. Users of earlier versions of 1.13 should upgrade. The Python versions supported are 2.7 and 3.4 - 3.6. ...
0
public_repos/numpy/doc/source
public_repos/numpy/doc/source/release/1.16.1-notes.rst
========================== NumPy 1.16.1 Release Notes ========================== The NumPy 1.16.1 release fixes bugs reported against the 1.16.0 release, and also backports several enhancements from master that seem appropriate for a release series that is the last to support Python 2.7. The wheels on PyPI are linked ...
0
public_repos/numpy/doc/source
public_repos/numpy/doc/source/release/1.23.3-notes.rst
.. currentmodule:: numpy ========================== NumPy 1.23.3 Release Notes ========================== NumPy 1.23.3 is a maintenance release that fixes bugs discovered after the 1.23.2 release. There is no major theme for this release, the main improvements are for some downstream builds and some annotation corner ...
0
public_repos/numpy/doc/source
public_repos/numpy/doc/source/release/1.21.4-notes.rst
.. currentmodule:: numpy ========================== NumPy 1.21.4 Release Notes ========================== The NumPy 1.21.4 is a maintenance release that fixes a few bugs discovered after 1.21.3. The most important fix here is a fix for the NumPy header files to make them work for both x86_64 and M1 hardware when incl...
0
public_repos/numpy/doc/source
public_repos/numpy/doc/source/release/1.18.2-notes.rst
.. currentmodule:: numpy ========================== NumPy 1.18.2 Release Notes ========================== This small release contains a fix for a performance regression in numpy/random and several bug/maintenance updates. The Python versions supported in this release are 3.5-3.8. Downstream developers should use Cyt...
0
public_repos/numpy/doc/source
public_repos/numpy/doc/source/release/1.23.5-notes.rst
.. currentmodule:: numpy ========================== NumPy 1.23.5 Release Notes ========================== NumPy 1.23.5 is a maintenance release that fixes bugs discovered after the 1.23.4 release and keeps the build infrastructure current. The Python versions supported for this release are 3.8-3.11. Contributors ====...
0
public_repos/numpy/doc/source
public_repos/numpy/doc/source/release/1.22.0-notes.rst
.. currentmodule:: numpy ========================== NumPy 1.22.0 Release Notes ========================== NumPy 1.22.0 is a big release featuring the work of 153 contributors spread over 609 pull requests. There have been many improvements, highlights are: * Annotations of the main namespace are essentially complete....
0
public_repos/numpy/doc/source
public_repos/numpy/doc/source/release/1.16.3-notes.rst
========================== NumPy 1.16.3 Release Notes ========================== The NumPy 1.16.3 release fixes bugs reported against the 1.16.2 release, and also backports several enhancements from master that seem appropriate for a release series that is the last to support Python 2.7. The wheels on PyPI are linked ...
0
public_repos/numpy/doc/source
public_repos/numpy/doc/source/release/1.14.6-notes.rst
========================== NumPy 1.14.6 Release Notes ========================== This is a bugfix release for bugs reported following the 1.14.5 release. The most significant fixes are: * Fix for behavior change in ``ma.masked_values(shrink=True)`` * Fix the new cached allocations machinery to be thread safe. The Py...
0
public_repos/numpy/doc/source
public_repos/numpy/doc/source/release/1.13.0-notes.rst
========================== NumPy 1.13.0 Release Notes ========================== This release supports Python 2.7 and 3.4 - 3.6. Highlights ========== * Operations like ``a + b + c`` will reuse temporaries on some platforms, resulting in less memory use and faster execution. * Inplace operations check if input...
0
public_repos/numpy/doc/source
public_repos/numpy/doc/source/release/1.17.4-notes.rst
.. currentmodule:: numpy ========================== NumPy 1.17.4 Release Notes ========================== This release contains fixes for bugs reported against NumPy 1.17.3 along with some build improvements. The Python versions supported in this release are 3.5-3.8. Downstream developers should use Cython >= 0.29.1...
0
public_repos/numpy/doc/source
public_repos/numpy/doc/source/release/1.12.1-notes.rst
========================== NumPy 1.12.1 Release Notes ========================== NumPy 1.12.1 supports Python 2.7 and 3.4 - 3.6 and fixes bugs and regressions found in NumPy 1.12.0. In particular, the regression in f2py constant parsing is fixed. Wheels for Linux, Windows, and OSX can be found on PyPI, Bugs Fixed ===...
0
public_repos/numpy/doc/source
public_repos/numpy/doc/source/release/1.19.4-notes.rst
.. currentmodule:: numpy ========================== NumPy 1.19.4 Release Notes ========================== NumPy 1.19.4 is a quick release to revert the OpenBLAS library version. It was hoped that the 0.3.12 OpenBLAS version used in 1.19.3 would work around the Microsoft fmod bug, but problems in some docker environm...
0
public_repos/numpy/doc/source
public_repos/numpy/doc/source/release/1.15.0-notes.rst
========================== NumPy 1.15.0 Release Notes ========================== NumPy 1.15.0 is a release with an unusual number of cleanups, many deprecations of old functions, and improvements to many existing functions. Please read the detailed descriptions below to see if you are affected. For testing, we have s...
0
public_repos/numpy/doc/source
public_repos/numpy/doc/source/release/1.15.1-notes.rst
========================== NumPy 1.15.1 Release Notes ========================== This is a bugfix release for bugs and regressions reported following the 1.15.0 release. * The annoying but harmless RuntimeWarning that "numpy.dtype size changed" has been suppressed. The long standing suppression was lost in the tran...
0
public_repos/numpy/doc/source
public_repos/numpy/doc/source/release/1.22.1-notes.rst
.. currentmodule:: numpy ========================== NumPy 1.22.1 Release Notes ========================== The NumPy 1.22.1 is a maintenance release that fixes bugs discovered after the 1.22.0 release. Notable fixes are: - Fix f2PY docstring problems (SciPy) - Fix reduction type problems (AstroPy) - Fix various typin...
0
public_repos/numpy/doc/source
public_repos/numpy/doc/source/release/1.24.2-notes.rst
.. currentmodule:: numpy ========================== NumPy 1.24.2 Release Notes ========================== NumPy 1.24.2 is a maintenance release that fixes bugs and regressions discovered after the 1.24.1 release. The Python versions supported by this release are 3.8-3.11. Contributors ============ A total of 14 peop...
0
public_repos/numpy/doc/source
public_repos/numpy/doc/source/release/1.14.5-notes.rst
========================== NumPy 1.14.5 Release Notes ========================== This is a bugfix release for bugs reported following the 1.14.4 release. The most significant fixes are: * fixes for compilation errors on alpine and NetBSD The Python versions supported in this release are 2.7 and 3.4 - 3.6. The Python...
0
public_repos/numpy/doc/source
public_repos/numpy/doc/source/release/1.26.2-notes.rst
.. currentmodule:: numpy ========================== NumPy 1.26.2 Release Notes ========================== NumPy 1.26.2 is a maintenance release that fixes bugs and regressions discovered after the 1.26.1 release. The 1.26.release series is the last planned minor release series before NumPy 2.0. The Python versions su...
0
public_repos/numpy/doc/source
public_repos/numpy/doc/source/release/1.10.2-notes.rst
========================== NumPy 1.10.2 Release Notes ========================== This release deals with a number of bugs that turned up in 1.10.1 and adds various build and release improvements. Numpy 1.10.1 supports Python 2.6 - 2.7 and 3.2 - 3.5. Compatibility notes =================== Relaxed stride checking i...
0
public_repos/numpy/doc/source
public_repos/numpy/doc/source/release/1.14.3-notes.rst
========================== NumPy 1.14.3 Release Notes ========================== This is a bugfix release for a few bugs reported following the 1.14.2 release: * np.lib.recfunctions.fromrecords accepts a list-of-lists, until 1.15 * In python2, float types use the new print style when printing to a file * style arg in...
0
public_repos/numpy/doc/source
public_repos/numpy/doc/source/release/1.22.3-notes.rst
.. currentmodule:: numpy ========================== NumPy 1.22.3 Release Notes ========================== NumPy 1.22.3 is a maintenance release that fixes bugs discovered after the 1.22.2 release. The most noticeable fixes may be those for DLPack. One that may cause some problems is disallowing strings as inputs to l...
0
public_repos/numpy/doc/source
public_repos/numpy/doc/source/release/1.21.1-notes.rst
.. currentmodule:: numpy ========================== NumPy 1.21.1 Release Notes ========================== The NumPy 1.21.1 is maintenance release that fixes bugs discovered after the 1.21.0 release and updates OpenBLAS to v0.3.17 to deal with problems on arm64. The Python versions supported for this release are 3.7-3...
0
public_repos/numpy/doc/source
public_repos/numpy/doc/source/release/1.6.1-notes.rst
========================= NumPy 1.6.1 Release Notes ========================= This is a bugfix only release in the 1.6.x series. Issues Fixed ============ * #1834: einsum fails for specific shapes * #1837: einsum throws nan or freezes python for specific array shapes * #1838: object <-> structured type arrays regre...
0
public_repos/numpy/doc/source
public_repos/numpy/doc/source/release/1.20.0-notes.rst
.. currentmodule:: numpy ========================== NumPy 1.20.0 Release Notes ========================== This NumPy release is the largest so made to date, some 684 PRs contributed by 184 people have been merged. See the list of highlights below for more details. The Python versions supported for this release are 3.7...
0
public_repos/numpy/doc/source
public_repos/numpy/doc/source/release/1.24.4-notes.rst
.. currentmodule:: numpy ========================== NumPy 1.24.4 Release Notes ========================== NumPy 1.24.4 is a maintenance release that fixes bugs and regressions discovered after the 1.24.3 release. The Python versions supported by this release are 3.8-3.11. Contributors ============ A total of 4 peopl...
0
public_repos/numpy/doc/source
public_repos/numpy/doc/source/release/1.24.0-notes.rst
.. currentmodule:: numpy ======================== NumPy 1.24 Release Notes ======================== The NumPy 1.24.0 release continues the ongoing work to improve the handling and promotion of dtypes, increase the execution speed, and clarify the documentation. There are also a large number of new and expired depreca...
0
public_repos/numpy/doc/source
public_repos/numpy/doc/source/release/1.17.3-notes.rst
.. currentmodule:: numpy ========================== NumPy 1.17.3 Release Notes ========================== This release contains fixes for bugs reported against NumPy 1.17.2 along with a some documentation improvements. The Python versions supported in this release are 3.5-3.8. Downstream developers should use Cython...
0
public_repos/numpy/doc/source
public_repos/numpy/doc/source/release/1.22.2-notes.rst
.. currentmodule:: numpy ========================== NumPy 1.22.2 Release Notes ========================== The NumPy 1.22.2 is maintenance release that fixes bugs discovered after the 1.22.1 release. Notable fixes are: - Several build related fixes for downstream projects and other platforms. - Various Annotation fix...
0
public_repos/numpy/doc/source
public_repos/numpy/doc/source/release/1.22.4-notes.rst
.. currentmodule:: numpy ========================== NumPy 1.22.4 Release Notes ========================== NumPy 1.22.4 is a maintenance release that fixes bugs discovered after the 1.22.3 release. In addition, the wheels for this release are built using the recently released Cython 0.29.30, which should fix the repor...
0
public_repos/numpy/doc/source
public_repos/numpy/doc/source/release/1.16.4-notes.rst
========================== NumPy 1.16.4 Release Notes ========================== The NumPy 1.16.4 release fixes bugs reported against the 1.16.3 release, and also backports several enhancements from master that seem appropriate for a release series that is the last to support Python 2.7. The wheels on PyPI are linked ...
0
public_repos/numpy/doc/source
public_repos/numpy/doc/source/release/1.6.0-notes.rst
========================= NumPy 1.6.0 Release Notes ========================= This release includes several new features as well as numerous bug fixes and improved documentation. It is backward compatible with the 1.5.0 release, and supports Python 2.4 - 2.7 and 3.1 - 3.2. Highlights ========== * Re-introduction o...
0
public_repos/numpy/doc/source
public_repos/numpy/doc/source/release/1.26.0-notes.rst
.. currentmodule:: numpy ========================== NumPy 1.26.0 Release Notes ========================== The NumPy 1.26.0 release is a continuation of the 1.25.x release cycle with the addition of Python 3.12.0 support. Python 3.12 dropped distutils, consequently supporting it required finding a replacement for the ...
0
public_repos/numpy/doc/source
public_repos/numpy/doc/source/release/1.11.2-notes.rst
========================== NumPy 1.11.2 Release Notes ========================== Numpy 1.11.2 supports Python 2.6 - 2.7 and 3.2 - 3.5. It fixes bugs and regressions found in Numpy 1.11.1 and includes several build related improvements. Wheels for Linux, Windows, and OS X can be found on PyPI. Pull Requests Merged ===...
0
public_repos/numpy/doc/source
public_repos/numpy/doc/source/release/1.11.0-notes.rst
========================== NumPy 1.11.0 Release Notes ========================== This release supports Python 2.6 - 2.7 and 3.2 - 3.5 and contains a number of enhancements and improvements. Note also the build system changes listed below as they may have subtle effects. No Windows (TM) binaries are provided for this ...
0
public_repos/numpy/doc/source
public_repos/numpy/doc/source/release/1.19.2-notes.rst
.. currentmodule:: numpy ========================== NumPy 1.19.2 Release Notes ========================== NumPy 1.19.2 fixes several bugs, prepares for the upcoming Cython 3.x release. and pins setuptools to keep distutils working while upstream modifications are ongoing. The aarch64 wheels are built with the latest ...
0
public_repos/numpy/doc/source
public_repos/numpy/doc/source/release/1.14.0-notes.rst
========================== NumPy 1.14.0 Release Notes ========================== Numpy 1.14.0 is the result of seven months of work and contains a large number of bug fixes and new features, along with several changes with potential compatibility issues. The major change that users will notice are the stylistic change...
0
public_repos/numpy/doc/source
public_repos/numpy/doc/source/release/1.6.2-notes.rst
========================= NumPy 1.6.2 Release Notes ========================= This is a bugfix release in the 1.6.x series. Due to the delay of the NumPy 1.7.0 release, this release contains far more fixes than a regular NumPy bugfix release. It also includes a number of documentation and build improvements. Issues...
0
public_repos/numpy/doc/source
public_repos/numpy/doc/source/release/1.19.1-notes.rst
.. currentmodule:: numpy ========================== NumPy 1.19.1 Release Notes ========================== NumPy 1.19.1 fixes several bugs found in the 1.19.0 release, replaces several functions deprecated in the upcoming Python-3.9 release, has improved support for AIX, and has a number of development related updates...
0
public_repos/numpy/doc/source
public_repos/numpy/doc/source/release/1.23.0-notes.rst
.. currentmodule:: numpy ========================== NumPy 1.23.0 Release Notes ========================== The NumPy 1.23.0 release continues the ongoing work to improve the handling and promotion of dtypes, increase the execution speed, clarify the documentation, and expire old deprecations. The highlights are: * Im...
0
public_repos/numpy/doc/source
public_repos/numpy/doc/source/release/1.20.1-notes.rst
.. currentmodule:: numpy ========================== NumPy 1.20.1 Release Notes ========================== NumPy 1,20.1 is a rapid bugfix release fixing several bugs and regressions reported after the 1.20.0 release. Highlights ========== - The distutils bug that caused problems with downstream projects is fixed. -...
0
public_repos/numpy/doc/source
public_repos/numpy/doc/source/release/1.7.2-notes.rst
========================= NumPy 1.7.2 Release Notes ========================= This is a bugfix only release in the 1.7.x series. It supports Python 2.4 - 2.7 and 3.1 - 3.3 and is the last series that supports Python 2.4 - 2.5. Issues fixed ============ * gh-3153: Do not reuse nditer buffers when not filled enough *...
0
public_repos/numpy/doc/source
public_repos/numpy/doc/source/release/1.18.4-notes.rst
.. currentmodule:: numpy ========================== NumPy 1.18.4 Release Notes ========================== This is the last planned release in the 1.18.x series. It reverts the ``bool("0")`` behavior introduced in 1.18.3 and fixes a bug in ``Generator.integers``. There is also a link to a new troubleshooting section i...
0
public_repos/numpy/doc/source
public_repos/numpy/doc/source/release/1.15.2-notes.rst
========================== NumPy 1.15.2 Release Notes ========================== This is a bugfix release for bugs and regressions reported following the 1.15.1 release. * The matrix PendingDeprecationWarning is now suppressed in pytest 3.8. * The new cached allocations machinery has been fixed to be thread safe. * T...
0
public_repos/numpy/doc/source
public_repos/numpy/doc/source/release/1.15.4-notes.rst
========================== NumPy 1.15.4 Release Notes ========================== This is a bugfix release for bugs and regressions reported following the 1.15.3 release. The Python versions supported by this release are 2.7, 3.4-3.7. The wheels are linked with OpenBLAS v0.3.0, which should fix some of the linalg prob...
0
public_repos/numpy/doc/source
public_repos/numpy/doc/source/release/1.21.3-notes.rst
.. currentmodule:: numpy ========================== NumPy 1.21.3 Release Notes ========================== NumPy 1.21.3 is a maintenance release that fixes a few bugs discovered after 1.21.2. It also provides 64 bit Python 3.10.0 wheels. Note a few oddities about Python 3.10: * There are no 32 bit wheels for Windows,...
0
public_repos/numpy/doc/source
public_repos/numpy/doc/source/release/1.9.0-notes.rst
========================= NumPy 1.9.0 Release Notes ========================= This release supports Python 2.6 - 2.7 and 3.2 - 3.4. Highlights ========== * Numerous performance improvements in various areas, most notably indexing and operations on small arrays are significantly faster. Indexing operations now al...
0
public_repos/numpy/doc/source
public_repos/numpy/doc/source/release/1.21.2-notes.rst
.. currentmodule:: numpy ========================== NumPy 1.21.2 Release Notes ========================== The NumPy 1.21.2 is a maintenance release that fixes bugs discovered after 1.21.1. It also provides 64 bit manylinux Python 3.10.0rc1 wheels for downstream testing. Note that Python 3.10 is not yet final. It also...
0
public_repos/numpy/doc/source
public_repos/numpy/doc/source/release/1.5.0-notes.rst
========================= NumPy 1.5.0 Release Notes ========================= Highlights ========== Python 3 compatibility ---------------------- This is the first NumPy release which is compatible with Python 3. Support for Python 3 and Python 2 is done from a single code base. Extensive notes on changes can be fo...
0
public_repos/numpy/doc/source
public_repos/numpy/doc/source/release/1.23.4-notes.rst
.. currentmodule:: numpy ========================== NumPy 1.23.4 Release Notes ========================== NumPy 1.23.4 is a maintenance release that fixes bugs discovered after the 1.23.3 release and keeps the build infrastructure current. The main improvements are fixes for some annotation corner cases, a fix for a l...
0
public_repos/numpy/doc/source
public_repos/numpy/doc/source/release/1.11.3-notes.rst
========================== NumPy 1.11.3 Release Notes ========================== Numpy 1.11.3 fixes a bug that leads to file corruption when very large files opened in append mode are used in ``ndarray.tofile``. It supports Python versions 2.6 - 2.7 and 3.2 - 3.5. Wheels for Linux, Windows, and OS X can be found on Py...
0
public_repos/numpy/doc/source
public_repos/numpy/doc/source/release/1.17.2-notes.rst
.. currentmodule:: numpy ========================== NumPy 1.17.2 Release Notes ========================== This release contains fixes for bugs reported against NumPy 1.17.1 along with a some documentation improvements. The most important fix is for lexsort when the keys are of type (u)int8 or (u)int16. If you are cur...
0