From d92973cc3ece12426cc1a2f6f0f3e6da305226f5 Mon Sep 17 00:00:00 2001 From: rcholic Date: Sun, 28 Dec 2025 12:35:02 -0800 Subject: [PATCH 1/3] play --- .gitignore | 1 + .python-version | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 4aba1fa..bf73102 100644 --- a/.gitignore +++ b/.gitignore @@ -59,3 +59,4 @@ Thumbs.db # Temporary directories from sync workflows extension-temp/ +playground/ diff --git a/.python-version b/.python-version index 9ac3804..0c7d5f5 100644 --- a/.python-version +++ b/.python-version @@ -1 +1 @@ -3.11.5 +3.11.4 From 33f4309e5495c8587c5aacb198fcb8bc7c639099 Mon Sep 17 00:00:00 2001 From: rcholic Date: Sun, 28 Dec 2025 12:39:38 -0800 Subject: [PATCH 2/3] include extension in release --- MANIFEST.in | 1 + pyproject.toml | 5 ++++- sentience/__init__.py | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/MANIFEST.in b/MANIFEST.in index 1cc7b2a..6dadf9c 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -1 +1,2 @@ include sentience/schemas/*.json +recursive-include sentience/extension *.js *.json *.wasm *.d.ts diff --git a/pyproject.toml b/pyproject.toml index 8c88e6a..6478a18 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "sentienceapi" -version = "0.90.2" +version = "0.90.3" description = "Python SDK for Sentience AI Agent Browser Automation" readme = "README.md" requires-python = ">=3.11" @@ -47,6 +47,9 @@ dev = [ where = ["."] include = ["sentience*"] +[tool.setuptools.package-data] +sentience = ["schemas/*.json", "extension/**/*"] + [tool.pytest.ini_options] testpaths = ["tests"] python_files = ["test_*.py"] diff --git a/sentience/__init__.py b/sentience/__init__.py index ee5915a..12304d1 100644 --- a/sentience/__init__.py +++ b/sentience/__init__.py @@ -64,7 +64,7 @@ ) from .wait import wait_for -__version__ = "0.90.2" +__version__ = "0.90.3" __all__ = [ # Core SDK From 514af67ce2125e8d620c8d1a61ba40a00064c6e2 Mon Sep 17 00:00:00 2001 From: rcholic Date: Sun, 28 Dec 2025 12:42:12 -0800 Subject: [PATCH 3/3] restore --- .python-version | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.python-version b/.python-version index 0c7d5f5..9ac3804 100644 --- a/.python-version +++ b/.python-version @@ -1 +1 @@ -3.11.4 +3.11.5