From bae0c79f6fab7b1156dbb769c5493d1b393d7fa6 Mon Sep 17 00:00:00 2001 From: Lysandre Date: Wed, 24 Feb 2021 15:02:48 -0500 Subject: [PATCH] Release: v4.3.3 --- setup.py | 2 +- src/transformers/__init__.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 34be698cbe..56df3fded4 100644 --- a/setup.py +++ b/setup.py @@ -282,7 +282,7 @@ install_requires = [ setup( name="transformers", - version="4.3.2", # expected format is one of x.y.z.dev0, or x.y.z.rc1 or x.y.z (no to dashes, yes to dots) + version="4.3.3", # expected format is one of x.y.z.dev0, or x.y.z.rc1 or x.y.z (no to dashes, yes to dots) author="Thomas Wolf, Lysandre Debut, Victor Sanh, Julien Chaumond, Sam Shleifer, Patrick von Platen, Sylvain Gugger, Google AI Language Team Authors, Open AI team Authors, Facebook AI Authors, Carnegie Mellon University Authors", author_email="thomas@huggingface.co", description="State-of-the-art Natural Language Processing for TensorFlow 2.0 and PyTorch", diff --git a/src/transformers/__init__.py b/src/transformers/__init__.py index 25019c4061..19a02340d4 100755 --- a/src/transformers/__init__.py +++ b/src/transformers/__init__.py @@ -22,7 +22,7 @@ # to defer the actual importing for when the objects are requested. This way `import transformers` provides the names # in the namespace without actually importing anything (and especially none of the backends). -__version__ = "4.3.2" +__version__ = "4.3.3" # Work around to update TensorFlow's absl.logging threshold which alters the # default Python logging output behavior when present.