From c772e7893a27aa780b239eac081e15c689c5b1c3 Mon Sep 17 00:00:00 2001 From: Mantas Date: Fri, 29 Jan 2021 01:03:07 +0200 Subject: [PATCH] Fix spinta package issue After releasing spinta 0.1.7, I found, that it won't install any dependencies. After quite lengthy debugging I found, that is is caused by description having a new line. Failed a bug report for Poetry: https://github.com/python-poetry/poetry/issues/3610 --- pyproject.toml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 190bffe22..bb5630abb 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,9 +1,7 @@ [tool.poetry] name = "spinta" version = "0.1.7" -description = """\ -A platform for describing, extracting, transforming and serving open data. -""" +description = "A platform for describing, extracting, transforming, loading and serving open data." authors = ["Mantas Zimnickas "] license = "MIT" readme = "README.rst"