summaryrefslogtreecommitdiff
path: root/docs
Commit message (Collapse)AuthorAgeFilesLines
* In docs, import TypeAlias from typing_extensions as docs are always built ↵Hernan Grecco2023-05-161-2/+2
| | | | with the lowest Python version
* Fix import in docsHernan Grecco2023-05-161-1/+1
|
* Missing empty line in docHernan Grecco2023-05-161-0/+1
|
* Improved documentation about extending the registryHernan Grecco2023-05-161-17/+41
|
* SharedObject module should beHernan Grecco2023-05-111-1/+1
|
* Better SharedRegistryObjects creationHernan Grecco2023-05-111-1/+1
|
* Remove deprecated usage in docs and fix introduced bug during refactoring.Hernan Grecco2023-05-051-6/+6
|
* Tooling: remove bors and remove zest-releaserHernan Grecco2023-05-011-2/+0
|
* Apply NEP-29: Pint now requires Python 3.9+ and NumPy 1.21+Hernan Grecco2023-04-292-2/+2
|
* Merge pull request #1685 from keewis/black-jupyterHernan Grecco2023-04-241-44/+41
|\ | | | | run `black` on notebooks as well
| * run pre-commit hooksJustus Magin2022-12-191-7/+1
| |
| * apply the pre-commit hooksJustus Magin2022-12-191-37/+40
| |
* | added example in docsRemDelaporteMathurin2023-01-201-0/+25
|/
* Issue-1659: changed frequency to angular frequency in the docsRohan Sureshkumar2022-11-271-2/+2
|
* fix grid docs urlsJules Chéron2022-10-281-2/+2
|
* Make Quantity, Unit and Measurement show inherited membersHernan2022-10-272-3/+5
|
* Renamed common API to Specific APIHernan2022-10-275-4/+17
|
* Partially reorganized docsHernan2022-10-2625-189/+439
| | | | | | | | - api is now split into 3 parts - files are reorganized in folders Additionally, some class members (Quantity, Unit, Measurement, Group, Context, System) are excluded from the docs as they confuse sphinx.
* Typo fix in docsHernan Grecco2022-10-261-1/+1
| | | Co-authored-by: Mika Pflüger <mika.pflueger@pik-potsdam.de>
* Document subclassingHernan2022-10-252-0/+84
|
* Update documentationJules Chéron2022-10-0943-1112/+533
| | | | | | | | | | | | | - Rework of configuration with new sphinx_book_theme - Use ipython directive where necessary - Add theme to requirements_docs.txt - Start using autosummarry - Fix doctests - Add sphinx design to requirements - Add overview & panels in home page - Update footer with `Pint Developers` - Fix docstrings - Use string imports in __all__ in __init__.py
* Update contributing.rstEdouard Berthe2022-08-191-1/+1
| | | | | It seems that the [`test`](https://github.com/hgrecco/pint/blob/master/setup.cfg#L36-L40) extra requirements section is needed to run test locally, when willing to contributing. (I still have 3 tests failing even and 13 xfailed but that's probably another pb)
* formattingandrewgsavage2022-07-161-2/+2
|
* fix doc errorandrewgsavage2022-07-161-12/+12
|
* add ang freq docsandrewgsavage2022-07-162-0/+35
|
* Updated docsHernan2022-05-072-13/+28
|
* Changed import in ipynbHernan2022-05-071-1/+1
|
* Moved Unit and Quantity to plain facetHernan2022-05-071-2/+2
| | | | | | Note: the word 'plain' was chosen instead of 'base' as BaseUnit or BaseQuantity as the latter might be interpreted physically and not a part of the class hierarchy as intented.
* mention that the new behavior can be enabledKeewis2022-04-091-1/+2
|
* Fix pandas notebook urlJules Chéron2022-03-301-1/+1
|
* remove pintpandas notebook (#1483)andrewgsavage2022-03-282-577/+2
|
* Merge branch 'master' into better_definitionsHernan Grecco2022-03-013-6/+60
|\
| * Merge pull request #1422 from keewis/formatter-docsJules Chéron2022-02-231-0/+18
| |\ | | | | | | add a example for a custom unit formatter
| | * Merge branch 'master' into formatter-docsKeewis2022-02-232-1/+8
| | |\
| | * | considerably simplify the example unit formatKeewis2022-02-231-11/+2
| | | |
| | * | Merge branch 'master' into formatter-docsKeewis2022-02-108-37/+49
| | |\ \
| | * | | typoKeewis2021-11-211-1/+1
| | | | |
| | * | | mention that `unit` is a `dict` subclass mapping names to exponentsKeewis2021-11-211-0/+4
| | | | |
| | * | | add a full example for `pint.register_unit_format`Keewis2021-11-211-0/+23
| | | | |
| * | | | properly deprecate the current behavior of the `default_format` option (#1419)keewis2022-02-231-5/+34
| | |_|/ | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * ignore magnitude formats for units * convert non-truthy to empty string * match longer flags first i.e. match `cfunits` before `cf`. There might be a better way to do this, though. * add a test to check for the deprecation * consistently split between mspec and uspec which allows emitting a DeprecationWarning * correct the explanation of where the default format is coming from * use `reverse=True` instead of sorting with `-len(x)` Co-authored-by: Jules Chéron <43635101+jules-ch@users.noreply.github.com> * make sure the warning is raised correctly
| * | | Merge branch 'master' into testingJules Chéron2022-02-231-1/+5
| |\ \ \
| | * | | Update testsuite to avoid a complete fail when the UnitRegistry is faultyHernan2022-02-141-1/+5
| | | |/ | | |/| | | | | | | | | | | | | | | | | | | | | Under no circunstances a registry should be instantiated in a module outside a fixture to avoid error during collection. This precludes running simple tests that do not depend on the registry.
| * | | Merge branch 'master' into testingKeewis2022-02-102-2/+2
| |\ \ \ | | |/ /
| * | | Merge branch 'master' into testingkeewis2021-12-116-35/+47
| |\ \ \
| * | | | document `pint.testing` using autodocKeewis2021-11-211-0/+3
| | |_|/ | |/| |
* | | | Fixed TypoHernan2022-03-011-1/+1
| | | |
* | | | Update docs with cache informationHernan2022-02-281-6/+14
| | | |
* | | | Add documentation about the cacheHernan2022-02-201-0/+49
| |_|/ |/| |
* | | Drop Support for Python 3.7Jules Chéron2022-02-042-2/+2
| |/ |/| | | | | | | | | | | | | | | - Update CHANGES - Update README - Add black badge in README - Update Docs - Move pull request template to github folder - Update CI with minimal dependencies
* | apply the new hooksKeewis2021-12-105-35/+33
| |