Skip to content

Commit b79cf19

Browse files
Updates for Python publish (#276)
* Bump version to 0.0.2, update classifiers. * Update README and version number. * Another bump.
1 parent 02e0a74 commit b79cf19

File tree

5 files changed

+6
-8
lines changed

5 files changed

+6
-8
lines changed

python/README.md

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,13 +18,10 @@ Types are all you need!
1818

1919
## Getting Started
2020

21-
> [!NOTE]
22-
> TypeChat is not currently published. For now, install from our GitHub repository.
23-
2421
Install TypeChat:
2522

2623
```sh
27-
pip install "typechat @ git+https://github.com/microsoft/TypeChat#subdirectory=python"
24+
pip install typechat
2825
```
2926

3027
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):

python/package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

python/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "typechat-py",
33
"private": true,
4-
"version": "0.0.1",
4+
"version": "0.0.4",
55
"description": "TypeChat is a library that makes it easy to build natural language interfaces using types.",
66
"scripts": {
77
"check": "pyright"

python/pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ classifiers = [
1818
"Programming Language :: Python",
1919
"Programming Language :: Python :: 3.11",
2020
"Programming Language :: Python :: 3.12",
21+
"Programming Language :: Python :: 3.13",
2122
"Programming Language :: Python :: Implementation :: CPython",
2223
"Programming Language :: Python :: Implementation :: PyPy",
2324
]

python/src/typechat/__about__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
# SPDX-FileCopyrightText: Microsoft Corporation
22
#
33
# SPDX-License-Identifier: MIT
4-
__version__ = "0.0.2"
4+
__version__ = "0.0.4"

0 commit comments

Comments
 (0)