From 06b26a9d45209bf06dd9facdf8c800c213db5072 Mon Sep 17 00:00:00 2001 From: Robert McLeod Date: Fri, 10 Dec 2021 17:32:48 -0500 Subject: [PATCH 1/3] Post release v2.8.1 actions done --- ANNOUNCE.rst | 10 +++------- RELEASE_NOTES.rst | 5 +++++ setup.cfg | 6 +++--- 3 files changed, 11 insertions(+), 10 deletions(-) diff --git a/ANNOUNCE.rst b/ANNOUNCE.rst index 1137c30..f3d5627 100644 --- a/ANNOUNCE.rst +++ b/ANNOUNCE.rst @@ -1,12 +1,10 @@ ======================== -Announcing NumExpr 2.8.1 +Announcing NumExpr 2.8.2 ======================== Hi everyone, -This is another maintenance release to further modernize our install script for -distributions that do not include `setuptools` by default. Thanks to Antonio -Valentino for the changes. +TODO Project documentation is available at: @@ -16,9 +14,7 @@ http://numexpr.readthedocs.io/ Changes from 2.8.0 to 2.8.1 --------------------------- -* Fixed dependency list. -* Added ``pyproject.toml`` and modernize the ``setup.py`` script. Thanks to -Antonio Valentino for the PR. +* TODO What's Numexpr? --------------- diff --git a/RELEASE_NOTES.rst b/RELEASE_NOTES.rst index 705e0fd..727e088 100644 --- a/RELEASE_NOTES.rst +++ b/RELEASE_NOTES.rst @@ -2,6 +2,11 @@ Release notes for Numexpr 2.8 series ==================================== +Changes from 2.8.1 to 2.8.2 +--------------------------- + +* TODO + Changes from 2.8.0 to 2.8.1 --------------------------- diff --git a/setup.cfg b/setup.cfg index 4c21ae3..3d28940 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,6 +1,6 @@ [metadata] name = numexpr -version = 2.8.1 +version = 2.8.2.dev1 description = Fast numerical expression evaluator for NumPy author = David M. Cooke, Francesc Alted, and others author_email = @@ -9,8 +9,8 @@ author_email = maintainer = Robert A. McLeod maintainer_email = robbmcleod@gmail.com url = https://github.com/pydata/numexpr -long_description = file: README.rst -long_description_content_type = text/x-rst +long_description = file: README.md +long_description_content_type = text/markdown license = MIT classifiers = Development Status :: 6 - Mature From 0505c2dd08a17fc2af43346ae9742c7cde62fc98 Mon Sep 17 00:00:00 2001 From: Antonio Valentino Date: Sat, 11 Dec 2021 09:22:42 +0100 Subject: [PATCH 2/3] Fix long_description_content_type in setup.cfg --- setup.cfg | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.cfg b/setup.cfg index 3d28940..3bfc093 100644 --- a/setup.cfg +++ b/setup.cfg @@ -10,7 +10,7 @@ maintainer = Robert A. McLeod maintainer_email = robbmcleod@gmail.com url = https://github.com/pydata/numexpr long_description = file: README.md -long_description_content_type = text/markdown +long_description_content_type = text/x-rst license = MIT classifiers = Development Status :: 6 - Mature From 679f7deabdc1022811b869b3e9b6451bfeb7cec5 Mon Sep 17 00:00:00 2001 From: Antonio Valentino Date: Thu, 16 Dec 2021 08:15:19 +0100 Subject: [PATCH 3/3] Update setup.cfg (fix README file extension) Co-authored-by: stephan-cr --- setup.cfg | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.cfg b/setup.cfg index 3bfc093..bae5e4c 100644 --- a/setup.cfg +++ b/setup.cfg @@ -9,7 +9,7 @@ author_email = maintainer = Robert A. McLeod maintainer_email = robbmcleod@gmail.com url = https://github.com/pydata/numexpr -long_description = file: README.md +long_description = file: README.rst long_description_content_type = text/x-rst license = MIT classifiers =