From 7008c7cd8db8125204356c2801bf1ae3baef1b03 Mon Sep 17 00:00:00 2001 From: Dieter Weber Date: Mon, 5 Feb 2024 12:11:47 +0100 Subject: [PATCH 1/2] Update __init__.py --- src/sparseconverter/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/sparseconverter/__init__.py b/src/sparseconverter/__init__.py index df10587..596a228 100644 --- a/src/sparseconverter/__init__.py +++ b/src/sparseconverter/__init__.py @@ -9,7 +9,7 @@ import sparse -__version__ = '0.4.0.dev0' +__version__ = '0.3.4' NUMPY = 'numpy' NUMPY_MATRIX = 'numpy.matrix' From 9da0f594c81c59e8dffbeb3f359d1e7e870c84a1 Mon Sep 17 00:00:00 2001 From: Dieter Weber Date: Mon, 5 Feb 2024 12:15:41 +0100 Subject: [PATCH 2/2] Update README.md --- README.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/README.md b/README.md index d849f15..651d248 100644 --- a/README.md +++ b/README.md @@ -76,6 +76,11 @@ and to perform efficient conversion to supported formats as needed. ## Changelog +### 0.3.4 + +* Support for Python 3.12 https://github.com/LiberTEM/sparseconverter/pull/26 +* Packaging update: Tests for conda-forge https://github.com/LiberTEM/sparseconverter/pull/27 + ### 0.3.3 * Perform feature checks lazily https://github.com/LiberTEM/sparseconverter/issues/15