diff --git a/docs/source/change-log.rst b/docs/source/change-log.rst index 8552548..cdd284d 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 earlier versions of ``pandas`` when installing with pip. 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"}