diff --git a/python/README.md b/python/README.md index 54a40e07..459cb82c 100644 --- a/python/README.md +++ b/python/README.md @@ -18,13 +18,10 @@ Types are all you need! ## Getting Started -> [!NOTE] -> TypeChat is not currently published. For now, install from our GitHub repository. - Install TypeChat: ```sh -pip install "typechat @ git+https://github.com/microsoft/TypeChat#subdirectory=python" +pip install typechat ``` You can also develop TypeChat from source, which needs [Python >=3.11](https://www.python.org/downloads/), [hatch](https://hatch.pypa.io/1.6/install/), and [Node.js >=20](https://nodejs.org/en/download): diff --git a/python/package-lock.json b/python/package-lock.json index 747c5e17..07cfde21 100644 --- a/python/package-lock.json +++ b/python/package-lock.json @@ -1,12 +1,12 @@ { "name": "typechat-py", - "version": "0.0.1", + "version": "0.0.4", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "typechat-py", - "version": "0.0.1", + "version": "0.0.4", "license": "MIT", "devDependencies": { "pyright": "1.1.358" diff --git a/python/package.json b/python/package.json index 07b28dbb..c2747e42 100644 --- a/python/package.json +++ b/python/package.json @@ -1,7 +1,7 @@ { "name": "typechat-py", "private": true, - "version": "0.0.1", + "version": "0.0.4", "description": "TypeChat is a library that makes it easy to build natural language interfaces using types.", "scripts": { "check": "pyright" diff --git a/python/pyproject.toml b/python/pyproject.toml index c040a73b..b733b196 100644 --- a/python/pyproject.toml +++ b/python/pyproject.toml @@ -18,6 +18,7 @@ classifiers = [ "Programming Language :: Python", "Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.12", + "Programming Language :: Python :: 3.13", "Programming Language :: Python :: Implementation :: CPython", "Programming Language :: Python :: Implementation :: PyPy", ] diff --git a/python/src/typechat/__about__.py b/python/src/typechat/__about__.py index e4e19461..73542f52 100644 --- a/python/src/typechat/__about__.py +++ b/python/src/typechat/__about__.py @@ -1,4 +1,4 @@ # SPDX-FileCopyrightText: Microsoft Corporation # # SPDX-License-Identifier: MIT -__version__ = "0.0.2" +__version__ = "0.0.4"