From 9801089174a4f7b4bfc6b6a3b1b46a793f65ed9d Mon Sep 17 00:00:00 2001 From: Nicolas Girardot Date: Thu, 5 Feb 2026 08:47:08 +0100 Subject: [PATCH] feat/bump-version --- pyproject.toml | 27 +++++++++++---------------- 1 file changed, 11 insertions(+), 16 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index c25429a..f654b57 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,14 +1,12 @@ [project] name = "edgee" -version = "1.0.0" +version = "1.0.1" description = "Lightweight Python SDK for Edgee AI Gateway" readme = "README.md" license = "Apache-2.0" requires-python = ">=3.10" dependencies = [] -authors = [ - { name = "Edgee", email = "support@edgee.ai" } -] +authors = [{ name = "Edgee", email = "support@edgee.ai" }] keywords = ["ai", "llm", "gateway", "openai", "anthropic"] classifiers = [ "Development Status :: 4 - Beta", @@ -41,16 +39,16 @@ line-length = 100 [tool.ruff.lint] select = [ - "E", # pycodestyle errors - "W", # pycodestyle warnings - "F", # pyflakes - "I", # isort - "B", # flake8-bugbear - "C4", # flake8-comprehensions - "UP", # pyupgrade + "E", # pycodestyle errors + "W", # pycodestyle warnings + "F", # pyflakes + "I", # isort + "B", # flake8-bugbear + "C4", # flake8-comprehensions + "UP", # pyupgrade ] ignore = [ - "E501", # line too long (handled by formatter) + "E501", # line too long (handled by formatter) ] [tool.ruff.format] @@ -58,7 +56,4 @@ quote-style = "double" indent-style = "space" [dependency-groups] -dev = [ - "pytest>=8.0.0", - "ruff>=0.8.0", -] +dev = ["pytest>=8.0.0", "ruff>=0.8.0"]