From 149c50030ed8709f61da042097872b2ba7bd9dec Mon Sep 17 00:00:00 2001 From: renae-r Date: Mon, 1 Jul 2024 00:30:17 -0500 Subject: [PATCH 1/2] pin numpy dependency --- docs/source/change-log.rst | 7 +++++++ poetry.lock | 2 +- pyproject.toml | 3 ++- 3 files changed, 10 insertions(+), 2 deletions(-) diff --git a/docs/source/change-log.rst b/docs/source/change-log.rst index 8552548..8338e21 100644 --- a/docs/source/change-log.rst +++ b/docs/source/change-log.rst @@ -11,6 +11,13 @@ This project adheres to `Semantic Versioning`_. .. _Semantic Versioning: http://semver.org/ +0.5.1 +----- +2024-07-01 + +* Bug Fixes + + * Pinned a minimum required version for ``numpy`` to avoid v2.0.0 incompatability with ``pandas``. 0.5.0 ----- diff --git a/poetry.lock b/poetry.lock index 428c457..21957e6 100644 --- a/poetry.lock +++ b/poetry.lock @@ -2298,4 +2298,4 @@ docs = [] [metadata] lock-version = "2.0" python-versions = "^3.8" -content-hash = "e937d6edba79affd414a8292691a01647e2b9080b83b8e3b9fefa982d2d8ac2b" +content-hash = "cbb2237162133d2fcd62f84a7188b8b4107564affa74d9da0dd312d51bb68292" diff --git a/pyproject.toml b/pyproject.toml index ca83cf8..6de51bf 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "ipumspy" -version = "0.5.0" +version = "0.5.1" description = "A collection of tools for working with IPUMS data" authors = ["Kevin H. Wilson ", "Renae Rodgers "] @@ -12,6 +12,7 @@ packages = [ [tool.poetry.dependencies] python = "^3.8" pandas = "^1.5.2" +numpy = "^1.24.4" click = "^8.0.0" pyarrow = "^14.0.2" requests = {extras = ["use_chardet_on_py3"], version = "^2.26.0"} From 14647472129d72ca39c5b80cde98d64ad2a212e4 Mon Sep 17 00:00:00 2001 From: renae-r Date: Mon, 1 Jul 2024 00:35:16 -0500 Subject: [PATCH 2/2] change log tweak --- docs/source/change-log.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/source/change-log.rst b/docs/source/change-log.rst index 8338e21..cdd284d 100644 --- a/docs/source/change-log.rst +++ b/docs/source/change-log.rst @@ -17,7 +17,7 @@ This project adheres to `Semantic Versioning`_. * Bug Fixes - * Pinned a minimum required version for ``numpy`` to avoid v2.0.0 incompatability with ``pandas``. + * Pinned a minimum required version for ``numpy`` to avoid v2.0.0 incompatability with earlier versions of ``pandas`` when installing with pip. 0.5.0 -----