Skip to content

release of 1.1.1 #28

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Aug 23, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 5 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@
# $ twine upload dist/*



from __future__ import absolute_import
import os
from datetime import date
Expand All @@ -31,7 +30,7 @@
# We don't declare our dependency on transformers here because we build with
# different packages for different variants

VERSION = "1.0.1"
VERSION = "1.2.0"

install_requires = [
"sagemaker-inference>=1.5.5",
Expand Down Expand Up @@ -79,10 +78,12 @@

setup(
name="sagemaker-huggingface-inference-toolkit",
version=VERSION if os.getenv("SM_HF_TOOLKIT_RELEASE") is not None else VERSION + 'b' + str(date.today()).replace('-', ''),
version=VERSION
if os.getenv("SM_HF_TOOLKIT_RELEASE") is not None
else VERSION + "b" + str(date.today()).replace("-", ""),
author="HuggingFace and Amazon Web Services",
description="Open source library for running inference workload with Hugging Face Deep Learning Containers on "
"Amazon SageMaker.",
"Amazon SageMaker.",
long_description=open("README.md", "r", encoding="utf-8").read(),
long_description_content_type="text/markdown",
keywords="NLP deep-learning transformer pytorch tensorflow BERT GPT GPT-2 AWS Amazon SageMaker Cloud",
Expand Down