summaryrefslogtreecommitdiff
path: root/docs
Commit message (Collapse)AuthorAgeFilesLines
* Moved Unit and Quantity to plain facetHernan2022-04-281-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
| |
* | Parse inf and nan in QuantityChris Barnes2021-12-101-0/+14
|/ | | | | | Resolves #1432 Case-insensitive; also accepts "infinity".
* Merge branch 'master' into format-docskeewis2021-10-031-6/+6
|\
| * Merge pull request #1315 from burmisha/fix-faq-linksJules Chéron2021-09-131-6/+6
| |\ | | | | | | Update FAQ links
| | * Update FAQ linksMikhail Burmistrov2021-05-221-6/+6
| | |
* | | try to set the language to noneKeewis2021-09-031-1/+1
| | |
* | | try code-blockKeewis2021-09-031-1/+1
| | |
* | | move to an extra blockKeewis2021-09-031-2/+2
| | |
* | | another attemptKeewis2021-09-031-0/+2
| | |
* | | convert back to a literal blockKeewis2021-09-031-4/+1
| | |
* | | don't specify the languageKeewis2021-08-301-1/+4
| | |
* | | add more detailsKeewis2021-08-301-1/+2
| | |
* | | typoKeewis2021-08-301-1/+1
| | |
* | | rewrite the quantity format docsKeewis2021-08-301-5/+3
| | |
* | | rewrite the unit format docsKeewis2021-08-301-10/+20
| | |
* | | wordingKeewis2021-08-231-0/+2
| | |
* | | extend the intersphinx settingsKeewis2021-08-231-1/+7
| | |
* | | describe the structure of quantity formatsKeewis2021-08-231-4/+11
| | |
* | | move the unit format spec description into its own sectionKeewis2021-08-231-0/+2
| | |
* | | add quantity format spec examplesKeewis2021-08-231-0/+12
| | |
* | | document the quantity modifierKeewis2021-08-231-5/+5
| | |
* | | enable napoleon type preprocessingKeewis2021-08-231-0/+4
| | |
* | | fix the tableKeewis2021-08-211-5/+5
| | |
* | | first draft of the format docsKeewis2021-08-213-0/+80
|/ /
* | Fix pint pandas notebook (#1318)andrewgsavage2021-06-211-11/+11
| | | | | | | | * fix pint pandas notebook * ignore plot
* | Merge pull request #1326 from jules-ch/drop-python3.6Hernan Grecco2021-06-122-2/+2
|\ \ | | | | | | Drop support for Python 3.6
| * | Drop support for Python 3.6Jules Chéron2021-06-122-2/+2
| |/ | | | | | | | | | | | | | | | | Update documentation & function supporting Python 3.6 - remove importlib_resources backport - Update minimal version numpy to 1.17 - Drop python 3.6 in ci.yml - remove condition on numpy version for __matmul__ - Numpy `__array_function__` is enabled by default in numpy>1.17
* | Typo and caseMatt Hall2021-06-031-2/+2
|/ | | | - Fixed typo "plicking" instead of "pickling". - Changed case of "Converting to different units" subhead to match the others, which all use sentence case (except when naming Pint classes).