From 65e0e9783b996a9e3c985f4f4eea0fa5391346d2 Mon Sep 17 00:00:00 2001 From: Matt Bogosian Date: Thu, 13 Oct 2022 16:09:28 -0500 Subject: [PATCH] Release v0.4.3 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * Migrates from [``setuptools_scm``](https://pypi.org/project/setuptools-scm/) to [``versioningit``](https://pypi.org/project/versioningit/) for more flexible version number formatting. * Adds work-around for ``numpy``’s typing updates ([posita/numerary#16](https://github.com/posita/numerary/issues/16)). * Allows deployments to PyPI from CI based on tags. * Exposes ``CachingProtocolMeta`` ([posita/numerary#15](https://github.com/posita/numerary/issues/15)). --- README.md | 16 ++++++++-------- mkdocs.yml | 2 +- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/README.md b/README.md index 6459ba0..1890142 100644 --- a/README.md +++ b/README.md @@ -18,11 +18,11 @@ All rights not expressly waived or licensed are reserved. If that file is missing or appears to be modified from its original, then please contact the author before viewing or using this software in any capacity.* [![Tests](https://github.com/posita/numerary/actions/workflows/on-push.yaml/badge.svg)](https://github.com/posita/numerary/actions/workflows/on-push.yaml) -[![Version](https://img.shields.io/pypi/v/numerary/0.4.2.svg)](https://pypi.org/project/numerary/0.4.2/) -[![Development Stage](https://img.shields.io/pypi/status/numerary/0.4.2.svg)](https://pypi.org/project/numerary/0.4.2/) -[![License](https://img.shields.io/pypi/l/numerary/0.4.2.svg)](http://opensource.org/licenses/MIT) -[![Supported Python Versions](https://img.shields.io/pypi/pyversions/numerary/0.4.2.svg)](https://pypi.org/project/numerary/0.4.2/) -[![Supported Python Implementations](https://img.shields.io/pypi/implementation/numerary/0.4.2.svg)](https://pypi.org/project/numerary/0.4.2/) +[![Version](https://img.shields.io/pypi/v/numerary/0.4.3.svg)](https://pypi.org/project/numerary/0.4.3/) +[![Development Stage](https://img.shields.io/pypi/status/numerary/0.4.3.svg)](https://pypi.org/project/numerary/0.4.3/) +[![License](https://img.shields.io/pypi/l/numerary/0.4.3.svg)](http://opensource.org/licenses/MIT) +[![Supported Python Versions](https://img.shields.io/pypi/pyversions/numerary/0.4.3.svg)](https://pypi.org/project/numerary/0.4.3/) +[![Supported Python Implementations](https://img.shields.io/pypi/implementation/numerary/0.4.3.svg)](https://pypi.org/project/numerary/0.4.3/) [![pre-commit](https://img.shields.io/badge/pre--commit-enabled-brightgreen?logo=pre-commit&logoColor=white)](https://github.com/pre-commit/pre-commit) [![Bear-ified™](https://raw.githubusercontent.com/beartype/beartype-assets/main/badge/bear-ified.svg)](https://beartype.rtfd.io/) @@ -262,7 +262,7 @@ These offer significant performance improvements, especially where protocols def ```
-Source: perf_supports_complex.ipy +Source: perf_supports_complex.ipy ``` python --8<-- "docs/perf_supports_complex.ipy" @@ -521,7 +521,7 @@ This is probably fine as long as runtime comparisons remain limited to crude che It would likely fail if runtime checking becomes more sophisticated, at which time, this implementation will need to be revisited. Hopefully by then, we can just delete ``numerary`` as the aspirationally unnecessary hack it is and move on with our lives. -(See [``beartype.typing``](https://github.com/beartype/beartype/tree/main/beartype/typing) and [``numerary``’s extension](https://github.com/posita/numerary/blob/v0.4.2/numerary/types.py) for details.) +(See [``beartype.typing``](https://github.com/beartype/beartype/tree/main/beartype/typing) and [``numerary``’s extension](https://github.com/posita/numerary/blob/v0.4.3/numerary/types.py) for details.) ## License @@ -568,7 +568,7 @@ It has the following runtime dependencies: See the [hacking quick-start](https://posita.github.io/numerary/0.4/contrib/#hacking-quick-start) for additional development and testing dependencies. -## Customers [![``numerary``-encumbered](https://raw.githubusercontent.com/posita/numerary/v0.4.2/docs/numerary-encumbered.svg)](https://posita.github.io/numerary/) +## Customers [![``numerary``-encumbered](https://raw.githubusercontent.com/posita/numerary/v0.4.3/docs/numerary-encumbered.svg)](https://posita.github.io/numerary/) * [``dyce``](https://github.com/posita/dyce/) - a pure-Python library for modeling arbitrarily complex dice mechanics and ~~mother~~ *birthing code base* of ``numerary``! * [👻 ``phantom-types``](https://github.com/antonagestam/phantom-types) - predicates and other type constraints without runtime overhead diff --git a/mkdocs.yml b/mkdocs.yml index ad882ec..f51bba3 100644 --- a/mkdocs.yml +++ b/mkdocs.yml @@ -27,7 +27,7 @@ nav: extra: version: provider: mike - __vers_str__: 0.4.2 + __vers_str__: 0.4.3 extra_javascript: - js/site.js