Skip to content

Commit 868bbe9

Browse files
d4l3kfacebook-github-bot
authored andcommitted
multipy: bump version to 0.1.0 (#240)
Summary: title Pull Request resolved: #240 Reviewed By: anirbanr-fb-r2p Differential Revision: D40813458 Pulled By: d4l3k fbshipit-source-id: fde45bc8b2254f96e6a583c02a7d9c5e8419a2c9
1 parent 1439c58 commit 868bbe9

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

multipy/version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,4 @@
1414
# 0.1.0bN # Beta release
1515
# 0.1.0rcN # Release Candidate
1616
# 0.1.0 # Final release
17-
__version__ = "0.1.0dev0"
17+
__version__ = "0.1.0"

setup.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -209,7 +209,7 @@ def get_nightly_version():
209209
if sys.version_info < (3, 7):
210210
sys.exit("python >= 3.7 required for multipy")
211211

212-
name = "multipy"
212+
name = "torchdeploy"
213213
NAME_ARG = "--override-name"
214214
if NAME_ARG in sys.argv:
215215
idx = sys.argv.index(NAME_ARG)
@@ -233,12 +233,12 @@ def get_nightly_version():
233233
author="MultiPy Devs",
234234
# TODO: @sahanp create email for MultiPy
235235
author_email="[email protected]",
236-
description="package + torch::deploy",
236+
description="torch::deploy (multipy) is a C++ library that makes it easier to run eager PyTorch models in production by using independent python interpreters to avoid the GIL.",
237237
long_description=readme,
238238
long_description_content_type="text/markdown",
239239
url="https://github.com/pytorch/multipy",
240240
license="BSD-3",
241-
keywords=["pytorch", "machine learning"],
241+
keywords=["pytorch", "machine learning", "inference"],
242242
python_requires=">=3.7",
243243
include_package_data=True,
244244
packages=find_packages(exclude=()),

0 commit comments

Comments
 (0)