Skip to content

Commit e1da243

Browse files
authored
Add py.typed for proper typechecking support on clients (#513)
* Add py.typed for proper typechecking support on clients * update client version
1 parent a87e5aa commit e1da243

File tree

4 files changed

+4
-3
lines changed

4 files changed

+4
-3
lines changed

clients/python/llmengine/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
1414

15-
__version__ = "0.0.0b31"
15+
__version__ = "0.0.0b32"
1616

1717
import os
1818
from typing import Sequence

clients/python/llmengine/py.typed

Whitespace-only changes.

clients/python/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "scale-llm-engine"
3-
version = "0.0.0.beta31"
3+
version = "0.0.0.beta32"
44
description = "Scale LLM Engine Python client"
55
license = "Apache-2.0"
66
authors = ["Phil Chen <[email protected]>"]

clients/python/setup.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
setup(
44
name="scale-llm-engine",
55
python_requires=">=3.7",
6-
version="0.0.0.beta31",
6+
version="0.0.0.beta32",
77
packages=find_packages(),
8+
package_data={"scale_llm_engine": ["py.typed"]},
89
)

0 commit comments

Comments
 (0)