Skip to content

Commit 2b50a4c

Browse files
authored
Merge pull request #28 from aws/release-1.1.1
release of 1.1.1
2 parents 2743a73 + 13f4638 commit 2b50a4c

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

setup.py

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@
2222
# $ twine upload dist/*
2323

2424

25-
2625
from __future__ import absolute_import
2726
import os
2827
from datetime import date
@@ -31,7 +30,7 @@
3130
# We don't declare our dependency on transformers here because we build with
3231
# different packages for different variants
3332

34-
VERSION = "1.0.1"
33+
VERSION = "1.2.0"
3534

3635
install_requires = [
3736
"sagemaker-inference>=1.5.5",
@@ -79,10 +78,12 @@
7978

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

0 commit comments

Comments
 (0)