From aecbf8ac6742e693440b8cfe880cab779f8ede83 Mon Sep 17 00:00:00 2001 From: Hugo Date: Thu, 5 Mar 2026 11:46:34 +0000 Subject: [PATCH] chore: loosen version constraint for mature dependencies with stable API --- skillnet-ai/pyproject.toml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/skillnet-ai/pyproject.toml b/skillnet-ai/pyproject.toml index 7f525d5..e1fd3aa 100644 --- a/skillnet-ai/pyproject.toml +++ b/skillnet-ai/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "skillnet-ai" -version = "0.0.9" +version = "0.0.10" description = "Official Python SDK for SkillNet: Create, Evaluate, and Connect AI Skills." readme = "README.md" authors = [{ name = "SkillNet Team", email = "liangyuannnnn@gmail.com" }] @@ -16,12 +16,12 @@ classifiers = [ ] requires-python = ">=3.9" dependencies = [ - "requests==2.32.5", - "openai==1.109.1", - "pydantic==2.12.5", - "tqdm==4.67.1", - "typer==0.21.1", - "rich==13.9.4", + "requests>=2.32.5,<3", + "openai>=1.109.1", + "pydantic>=2.12.5,<3", + "tqdm>=4.67.1", + "typer>=0.21.1,<1", + "rich>=13.9.4", "PyPDF2==3.0.1", "pycryptodome==3.23.0", "python-docx==1.2.0",