Skip to content

Commit

Permalink
Add py.typed for proper typechecking support on clients (#513)
Browse files Browse the repository at this point in the history
* Add py.typed for proper typechecking support on clients

* update client version
  • Loading branch information
dmchoiboi authored May 7, 2024
1 parent a87e5aa commit e1da243
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion clients/python/llmengine/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.

__version__ = "0.0.0b31"
__version__ = "0.0.0b32"

import os
from typing import Sequence
Expand Down
Empty file.
2 changes: 1 addition & 1 deletion clients/python/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "scale-llm-engine"
version = "0.0.0.beta31"
version = "0.0.0.beta32"
description = "Scale LLM Engine Python client"
license = "Apache-2.0"
authors = ["Phil Chen <[email protected]>"]
Expand Down
3 changes: 2 additions & 1 deletion clients/python/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
setup(
name="scale-llm-engine",
python_requires=">=3.7",
version="0.0.0.beta31",
version="0.0.0.beta32",
packages=find_packages(),
package_data={"scale_llm_engine": ["py.typed"]},
)

0 comments on commit e1da243

Please sign in to comment.