From 7f8255b3801d6cf6c7adbde813424396f9839ce4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fran=C3=A7ois=20Laurent?= Date: Fri, 17 Jan 2025 17:16:18 +0100 Subject: [PATCH 1/3] poetry publish --- pyproject.toml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 58b18e4..b0e231b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,10 +1,11 @@ [tool.poetry] -name = "rwa" +name = "rwa-python" version = "0.9.4" description = "HDF5-based serialization library for Python datatypes" authors = ["François Laurent "] license = "Apache 2.0" readme = "README.md" +packages = [{ include="rwa", from="." }] [tool.poetry.dependencies] python = ">=3.8,<3.14" From a26de9073b54ee463c17aa32848a0e79197e3eee Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fran=C3=A7ois=20Laurent?= Date: Wed, 22 Jan 2025 10:42:01 +0100 Subject: [PATCH 2/3] relax version constraints on Python --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index b0e231b..33b53a9 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -8,7 +8,7 @@ readme = "README.md" packages = [{ include="rwa", from="." }] [tool.poetry.dependencies] -python = ">=3.8,<3.14" +python = ">=3.8,<4.0" six = "^1.16.0" numpy = ">=0" scipy = ">=0" From 9fb665e4b027094ef689bde572b976444b763b24 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fran=C3=A7ois=20Laurent?= Date: Fri, 24 Jan 2025 14:43:03 +0100 Subject: [PATCH 3/3] version increment for conda rebuild --- pyproject.toml | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 33b53a9..a82b1aa 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "rwa-python" -version = "0.9.4" +version = "0.9.5" description = "HDF5-based serialization library for Python datatypes" authors = ["François Laurent "] license = "Apache 2.0" diff --git a/setup.py b/setup.py index 9aa2098..f21c513 100644 --- a/setup.py +++ b/setup.py @@ -24,7 +24,7 @@ setup( name = 'rwa-python', - version = '0.9.4', + version = '0.9.5', description = 'HDF5-based serialization library for Python datatypes', long_description = long_description, url = 'https://github.com/DecBayComp/RWA-python',