Skip to content

Commit

Permalink
multipy: bump version to 0.1.0 (#240)
Browse files Browse the repository at this point in the history
Summary:
title

Pull Request resolved: #240

Reviewed By: anirbanr-fb-r2p

Differential Revision: D40813458

Pulled By: d4l3k

fbshipit-source-id: fde45bc8b2254f96e6a583c02a7d9c5e8419a2c9
  • Loading branch information
d4l3k authored and facebook-github-bot committed Oct 28, 2022
1 parent 1439c58 commit 868bbe9
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion multipy/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,4 @@
# 0.1.0bN # Beta release
# 0.1.0rcN # Release Candidate
# 0.1.0 # Final release
__version__ = "0.1.0dev0"
__version__ = "0.1.0"
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,7 @@ def get_nightly_version():
if sys.version_info < (3, 7):
sys.exit("python >= 3.7 required for multipy")

name = "multipy"
name = "torchdeploy"
NAME_ARG = "--override-name"
if NAME_ARG in sys.argv:
idx = sys.argv.index(NAME_ARG)
Expand All @@ -233,12 +233,12 @@ def get_nightly_version():
author="MultiPy Devs",
# TODO: @sahanp create email for MultiPy
author_email="sahanp@fb.com",
description="package + torch::deploy",
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.",
long_description=readme,
long_description_content_type="text/markdown",
url="https://github.com/pytorch/multipy",
license="BSD-3",
keywords=["pytorch", "machine learning"],
keywords=["pytorch", "machine learning", "inference"],
python_requires=">=3.7",
include_package_data=True,
packages=find_packages(exclude=()),
Expand Down

0 comments on commit 868bbe9

Please # to comment.