From b5113514ca6b4a9ba00734e9b3caaf363f3385af Mon Sep 17 00:00:00 2001 From: Dag Brattli Date: Tue, 26 Jul 2022 21:22:28 +0200 Subject: [PATCH] fix: update pyproject toml details (#62) --- src/pyproject.toml | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/src/pyproject.toml b/src/pyproject.toml index 4eb75b9..623d3dc 100644 --- a/src/pyproject.toml +++ b/src/pyproject.toml @@ -1,20 +1,17 @@ [tool.poetry] name = "fable-python" -version = "0.1.0" +version = "0.18.0" description = "Python bindings for Fable" authors = ["Dag Brattli "] license = "MIT" [tool.poetry.dependencies] -python = "^3.8" -fable-library = "^0.3.0" +python = ">= 3.9, < 4.0" +fable-library = "^0.8.0" [tool.poetry.dev-dependencies] -[tool.fable] -package-dir = "fable-python/fable_python" - [build-system] requires = ["poetry-core>=1.0.0"] build-backend = "poetry.core.masonry.api"