From 01a246bcbfd3de1495c8ad495d0b1477a3951e51 Mon Sep 17 00:00:00 2001 From: Fabien Arcellier Date: Wed, 12 Feb 2025 13:11:04 +0100 Subject: [PATCH 1/2] feat: writer framework build process is compatible with poetry 2.0.0 * refactor: change include list in pyproject.toml to use path dictionaries with format specified for sdist and wheel --- pyproject.toml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index fd13fed05..09c79532e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -23,10 +23,10 @@ packages = [ { include = "writer", from = "src" } ] include = [ - "src/writer/*.py", - "src/writer/static/**/*", - "src/writer/templates/**/*", - "src/writer/app_templates/**/*" + { path = "src/writer/*.py", format = ["sdist", "wheel"] }, + { path = "src/writer/static/**/*", format = ["sdist", "wheel"] }, + { path = "src/writer/templates/**/*", format = ["sdist", "wheel"] }, + { path = "src/writer/app_templates/**/*", format = ["sdist", "wheel"] } ] [tool.poetry.dependencies] From e39794eb6dbc93bed6db844b3e53badb2e5a19cf Mon Sep 17 00:00:00 2001 From: Ramiro Medina <64783088+ramedina86@users.noreply.github.com> Date: Wed, 12 Feb 2025 15:43:49 +0000 Subject: [PATCH 2/2] chore: Bump version --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 95fdffc2c..ca2b077ad 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api" [tool.poetry] name = "writer" -version = "0.8.3rc5" +version = "0.8.3rc6" description = "An open-source, Python framework for building feature-rich apps that are fully integrated with the Writer platform." authors = ["Writer, Inc."] readme = "README.md"