summaryrefslogtreecommitdiff
path: root/doc/source
Commit message (Collapse)AuthorAgeFilesLines
...
| * | MAINT,DOC: Fix doc fragments and testsRohit Goswami2022-06-055-6/+6
| | |
| * | ENH: Support character string arraysPearu Peterson2022-06-056-11/+91
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | TST: added test for issue #18684 ENH: f2py opens files with correct encoding, fixes #635 TST: added test for issue #6308 TST: added test for issue #4519 TST: added test for issue #3425 ENH: Implement user-defined hooks support for post-processing f2py data structure. Implement character BC hook. ENH: Add support for detecting utf-16 and utf-32 encodings.
* | | DIC: Misc RST reformatting.Matthias Bussonnier2022-06-0310-42/+43
|/ / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This contains various RST reformatting. One, moving `(C)` one line up, is specific to a bug in tree-sitter-rst that mis parses this section. Another is adding one black line for a similar reason where `..` is seen as section underline by tree-sitter-rst. This is some shuffling of section underline: try to be consitant, `=`, then `-`, then `~`, with this refactor there is also no more section that use backticks as underline. Note in particular that non-consitency of underline lead to a problem in datetime64 section where "weekmasks" (underlined with `-`) were actually a level-4 heading instead of a level 2 or 3 I guess, and thus were nested under the `busday_count()` section. You'll note also 2 formulas that are under double-quotes as they are not references.
* | ENH: Add support for symbol to polynomial package (#16154)Ross Barnowski2022-06-012-27/+27
| | | | | | | | | | | | | | Adds a symbol attribute to the polynomials from the np.polynomial package to allow the user to control/modify the symbol used to represent the independent variable for a polynomial expression. This attribute corresponds to the variable attribute of the poly1d class from the old np.lib.polynomial module. Marked as draft for now as it depends on #15666 - all _str* and _repr* methods of ABCPolyBase and derived classes would need to be modified (and tested) to support this change. Co-authored-by: Warren Weckesser <warren.weckesser@gmail.com>
* | DOC: Add a policy about inactive PRs. (#21537)Inessa Pawson2022-06-011-1/+11
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Adding a policy about inactive PRs that was approved at the community meeting on March 30th, 2022 (and May 25th, 2022). * Add a policy about inactive PRs. * Update doc/source/dev/reviewer_guidelines.rst Co-authored-by: Rohit Goswami <r95g10@gmail.com> * Update doc/source/dev/reviewer_guidelines.rst * Update doc/source/dev/reviewer_guidelines.rst Co-authored-by: Sebastian Berg <sebastian@sipsolutions.net>
* | DOC: move `import_array` and `import_umath` above `PyModule_Create`Ralf Gommers2022-05-281-13/+15
| | | | | | | | | | | | | | | | | | This seems to be a slightly better order, because these initializations are independent of module creation, and if initialization fails then there's no reference to the new module floating around. See https://github.com/scipy/scipy/issues/16231 [skip actions]
* | MAINT: Changed reference to multiple filesShoban Chiddarth2022-05-246-7/+7
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Changed files are - doc/HOWTO_RELEASE.rst - doc/Makefile - doc/changelog/1.15.0-changelog.rst - doc/changelog/1.16.0-changelog.rst - doc/changelog/1.17.0-changelog.rst - doc/changelog/1.19.0-changelog.rst - doc/changelog/1.21.0-changelog.rst - doc/neps/nep-0045-c_style_guide.rst - doc/source/dev/howto_build_docs.rst - doc/source/dev/releasing.rst - doc/source/reference/distutils_guide.rst - doc/source/reference/testing.rst - doc/source/release/1.7.0-notes.rst - doc/source/release/1.8.0-notes.rst
* | REL: Prepare main for NumPy 1.24.0 developmentCharles Harris2022-05-232-0/+46
| |
* | Merge pull request #21558 from bsipocz/python36_37_cleanupSebastian Berg2022-05-235-12/+10
|\ \ | | | | | | MAINT: Python <3.8 related cleanups
| * | MAINT: Python <3.8 related cleanupsBrigitta Sipőcz2022-05-234-6/+6
| | |
| * | MAINT: Python <3.7 related cleanupsBrigitta Sipőcz2022-05-231-6/+4
| | |
* | | DOC: Style version switcher button (#21451)Pamphile Roy2022-05-222-1/+35
|/ / | | | | | | | | | | | | | | | | | | | | | | | | * DOC: use PR ref as version name in CircleCI preview * DOC: style version button depending on release * DOC: fix logic for switcher_version. [skip actions] [skip azp] [skip travis] * DOC: provision empty dataset attribute and simplify not. [skip actions] [skip azp] [skip travis]
* | REL: Update main after 1.22.4 release.Charles Harris2022-05-212-0/+63
| |
* | Merge pull request #19226 from ↵Matti Picus2022-05-191-12/+62
|\ \ | | | | | | | | | | | | seberg/fix-void-cast-safety-promotion-and-comparison API: Fix structured dtype cast-safety, promotion, and comparison
| * | DOC: mv details from release note to user guide.Ross Barnowski2022-05-111-3/+40
| | |
| * | WIP: docs... Need to start a whole new "promotion" probably based on some ↵Sebastian Berg2022-05-091-10/+23
| | | | | | | | | | | | stuff in the NEP 50 draft...
* | | Remove mentioning deprecated and removed scipy.weave as an alternativeBrigitta Sipocz2022-05-171-19/+1
| | |
* | | DOC: Proposal - make the doc landing page cards more similar to scipy/pandas ↵Ross Barnowski2022-05-144-24/+47
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | (#21491) * DOC: Add panel elements to index matching scipy/pandas. * DOC: Update card styling in css to match scipy/pandas. * DOC: Add release notes to nav bar. * DOC: replace css in layout with html_css_files conf val. * DOC: Fix page layout. Co-authored-by: Stefan van der Walt <stefanv@berkeley.edu> Co-authored-by: Stefan van der Walt <stefanv@berkeley.edu>
* | | DOC: fix documentation for typedescr argument of PyArray_AsCArrayMarkus Mohrhard2022-05-141-9/+6
| | | | | | | | | | | | | | | The PyArray_AsCArray API does not conform to the documentation and document that the call steals a reference to the PyArray_Descr argument.
* | | Merge pull request #20020 from joukewitteveen/ma-ndenumerateMatti Picus2022-05-111-0/+1
|\ \ \ | | | | | | | | ENH: add ndenumerate specialization for masked arrays
| * | | ENH: add ndenumerate specialization for masked arraysJouke Witteveen2022-04-221-0/+1
| | | |
* | | | DOC: style main page card. (#21456)Pamphile Roy2022-05-091-1/+21
| |/ / |/| | | | | [skip actions] [skip travis]
* | | Merge pull request #21400 from Patol75/patch-1Matti Picus2022-05-061-0/+6
|\ \ \ | | | | | | | | DOC: Add missing entries in `numpy.testing` documentation
| * | | ENH: Apply suggested changeThomas Duvernay2022-05-061-1/+0
| | | | | | | | | | | | Co-authored-by: Matti Picus <matti.picus@gmail.com>
| * | | DOC: Add missing functions in `numpy.testing` documentationThomas Duvernay2022-04-261-0/+7
| | | |
* | | | DOC: Add version switcher to the documentation (#21426)Sebastian Berg2022-05-042-0/+74
| | | |
* | | | DOC: Windows and F2PY (#20311)Rohit Goswami2022-05-046-1/+353
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * DOC: Windows and F2PY * DOC: Intel F2PY * DOC: F2PY Windows Reviewer Comments I Co-authored-by: Melissa Weber Mendonça <melissawm@gmail.com> * DOC: Clean F2PY Win and add to index * DOC: F2PY windows narrative rewrite * DOC: Clean up Windows environment suggestions * DOC: Add Windows Terminal Details * DOC: Update windows index * MAINT: Clean doc * DOC: Add partials for Windows * DOC: Update as per review Co-authored-by: Melissa Weber Mendonça <melissawm@gmail.com> * DOC,BLD: Add to toctree to appease build Co-authored-by: Melissa Weber Mendonça <melissawm@gmail.com>
* | | | Merge pull request #21410 from HaoZeke/gh19159Sebastian Berg2022-05-031-3/+7
|\ \ \ \ | | | | | | | | | | DOC: Update set of allowed f2cmap types
| * | | | DOC: Update set of allowed f2cmap typesRohit Goswami2022-04-291-3/+7
| |/ / /
* | | | Merge pull request #21187 from HaoZeke/f2pyDeterminismRohit Goswami2022-04-295-8/+21
|\ \ \ \ | |/ / / |/| | | ENH: F2PY build output determinism
| * | | MAINT: Pick a better nameRohit Goswami2022-04-293-3/+3
| | | | | | | | | | | | | | | | | | | | | | | | Co-authored-by: Ralf Gommers <ralf.gommers@gmail.com> Co-authored-by: Pearu Peterson <pearu.peterson@gmail.com> Co-authored-by: Melissa Weber Mendonça <melissawm@gmail.com>
| * | | ENH: Switch to a negative flagRohit Goswami2022-03-215-8/+13
| | | | | | | | | | | | | | | | | | | | | | | | Also remove FutureWarning and update documentation Co-authored-by: Ralf Gommers <ralf.gommers@gmail.com>
| * | | DOC: Reword for new emptygen behaviourRohit Goswami2022-03-214-8/+8
| | | |
| * | | DOC: Update documentation and usageRohit Goswami2022-03-125-6/+14
| | | |
* | | | DOC: non-orphan page, and casing.Matthias Bussonnier2022-04-231-2/+0
| |/ / |/| | | | | | | | | | | | | | | | | | | | user/index is not an orphan page, it is references in the main index.rst Unless there is another reason to mark it as orphan ? Also lowercase a directive, it is the only instance of an uppercase directive in all the source code of numpy/scipy.
* | | Merge pull request #21032 from jon-deng/fix-sphinx-doc-errorsMatti Picus2022-04-201-4/+4
|\ \ \ | | | | | | | | DOC: fix sphinx errors due to np.emath references
| * | | DOC: Fix formatting for routines.emath.rst titleJonathan Deng2022-03-051-1/+1
| | | |
| * | | DOC: Fix missing lib.scimath module referenceJonathan Deng2022-03-031-1/+1
| | | |
| * | | DOC: Remove routines.lib.scimath.rstJonathan Deng2022-03-032-10/+1
| | | |
| * | | Merge branch 'main' into fix-sphinx-doc-errorsJonathan Deng2022-03-0226-811/+1204
| |\ \ \
| * | | | DOC: Fix broken links to numpy.emath moduleJonathan Deng2022-02-252-2/+11
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | There are a number of broken links to the numpy.emath module because there are no generated documentation for numpy.emath, which is an alias of numpy.lib.scimath. This fixes the broken links by generating documentation for numpy.emath, that duplicates the documentation for numpy.lib.scimath.
* | | | | Merge pull request #21133 from seberg/doc-subclassesMatti Picus2022-04-182-0/+45
|\ \ \ \ \ | | | | | | | | | | | | DOC: Note interop from "subclassing" docs and explain when to avoid
| * | | | | DOC: Note interop from "subclassing" docs and explain when to avoidSebastian Berg2022-03-142-0/+45
| | |/ / / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | I think we have consensus that for many users subclassing is a bad idea, but our docs don't really give much of a hint as to why, and what else. We long have the answers for these, so this is a start to actually write them down. Addresses some of the points in gh-20998.
* | | | | Merge pull request #21330 from NamamiShanker/f2pyTestsDocCharles Harris2022-04-123-0/+91
|\ \ \ \ \ | | | | | | | | | | | | DOC: Add F2PY tests documentation
| * | | | | DOC: Move f2py-testing to f2py-reference toctreeNamami Shanker2022-04-132-1/+1
| | | | | |
| * | | | | DOC: Add f2py test docs to index tocNamami Shanker2022-04-121-0/+1
| | | | | |
| * | | | | DOC: Add F2PY test documentationNamami Shanker2022-04-122-0/+90
| | | | | |
* | | | | | Merge pull request #21331 from charris/post-1.21.6-release-updateCharles Harris2022-04-122-0/+14
|\ \ \ \ \ \ | | | | | | | | | | | | | | REL: Update main after 1.21.6 release.
| * | | | | | REL: Update main after 1.21.6 release.Charles Harris2022-04-122-0/+14
| | | | | | |
* | | | | | | Merge pull request #21327 from asmeurer/array-api-doc-updatesMatti Picus2022-04-121-5/+4
|\ \ \ \ \ \ \ | |/ / / / / / |/| | | | | | Small updates to the array_api docs