summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHernan <hernan.grecco@gmail.com>2020-01-05 22:51:30 -0600
committerHernan <hernan.grecco@gmail.com>2020-01-05 22:51:30 -0600
commite405ececf2b95ce7ebd2b9bc446115d4dac49690 (patch)
treee9a2fa418f4831173ada684eda1b09a6c5683449
parent255fdd503f0ca36c0cc6ddae577c457871670ef9 (diff)
downloadpint-e405ececf2b95ce7ebd2b9bc446115d4dac49690.tar.gz
Release related fixes
-rw-r--r--CHANGES2
-rw-r--r--MANIFEST.in3
-rw-r--r--README.rst9
3 files changed, 12 insertions, 2 deletions
diff --git a/CHANGES b/CHANGES
index 82faedb..0850038 100644
--- a/CHANGES
+++ b/CHANGES
@@ -25,12 +25,14 @@ Pint Changelog
of basic tests has been added.
(Issue #963, Thanks Jon Thielen)
- Improvements to wraps and check:
+
- fail upon decoration (not execution) by checking wrapped function signature against
wraps/check arguments.
(might BREAK test code)
- wraps only accepts strings and Units (not quantities) to avoid confusion with magnitude.
(might BREAK code not conforming to documentation)
- when strict=True, strings that can be parsed to quantities are accepted as arguments.
+
- Add revolutions per second (rps)
- Improved compatibility for upcast types like xarray's DataArray or Dataset, to which
Pint Quantities now fully defer for arithmetic and NumPy operations. A collection of
diff --git a/MANIFEST.in b/MANIFEST.in
index e8e05bb..05c3182 100644
--- a/MANIFEST.in
+++ b/MANIFEST.in
@@ -1,7 +1,8 @@
-include README AUTHORS CHANGES LICENSE README.rst BADGES.rst
+include AUTHORS CHANGES LICENSE README.rst BADGES.rst
recursive-include pint *
recursive-include docs *
recursive-include bench *
prune docs/_build
prune docs/_themes/.git
+exclude .editorconfig bors.toml pull_request_template.md requirements_docs.txt
global-exclude *.pyc *~ .DS_Store *__pycache__* *.pyo .travis-exclude.yml
diff --git a/README.rst b/README.rst
index 68d8261..6c99466 100644
--- a/README.rst
+++ b/README.rst
@@ -142,4 +142,11 @@ ufuncs are supported including automatic conversion of units. For example
quantity will be radian.
-.. _Website: http://www.dimensionalanalysis.org/ \ No newline at end of file
+.. _Website: http://www.dimensionalanalysis.org/
+.. _`comprehensive list of physical units, prefixes and constants`: https://github.com/hgrecco/pint/blob/master/pint/default_en.txt
+.. _`uncertainties package`: https://pythonhosted.org/uncertainties/
+.. _`NumPy`: http://www.numpy.org/
+.. _`PEP 3101`: https://www.python.org/dev/peps/pep-3101/
+.. _`Babel`: http://babel.pocoo.org/
+.. _`Pandas Extension Types`: https://pandas.pydata.org/pandas-docs/stable/extending.html#extension-types
+.. _`pint-pandas Jupyter notebook`: https://github.com/hgrecco/pint-pandas/blob/master/notebooks/pandas_support.ipynb