Skip to content

Commit 7cb203f

Browse files
committed
Release: v2.9.1
1 parent 9a687eb commit 7cb203f

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

docs/source/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
# The short X.Y version
2727
version = u''
2828
# The full version, including alpha/beta/rc tags
29-
release = u'2.9.0'
29+
release = u'2.9.1'
3030

3131

3232
# -- General configuration ---------------------------------------------------

setup.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -78,14 +78,14 @@
7878
extras["docs"] = ["recommonmark", "sphinx", "sphinx-markdown-tables", "sphinx-rtd-theme"]
7979
extras["quality"] = [
8080
"black",
81-
"isort @ git+git://github.com/timothycrosley/isort.git@e63ae06ec7d70b06df9e528357650281a3d3ec22#egg=isort",
81+
"isort",
8282
"flake8==3.7.9",
8383
]
84-
extras["dev"] = extras["testing"] + extras["quality"] + ["mecab-python3", "scikit-learn", "tensorflow <= 2.1", "torch"]
84+
extras["dev"] = extras["testing"] + extras["quality"] + ["mecab-python3", "scikit-learn", "tensorflow", "torch"]
8585

8686
setup(
8787
name="transformers",
88-
version="2.9.0",
88+
version="2.9.1",
8989
author="Thomas Wolf, Lysandre Debut, Victor Sanh, Julien Chaumond, Sam Shleifer, Google AI Language Team Authors, Open AI team Authors, Facebook AI Authors, Carnegie Mellon University Authors",
9090
author_email="[email protected]",
9191
description="State-of-the-art Natural Language Processing for TensorFlow 2.0 and PyTorch",

src/transformers/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# There's no way to ignore "F401 '...' imported but unused" warnings in this
33
# module, but to preserve other warnings. So, don't check this module at all.
44

5-
__version__ = "2.9.0"
5+
__version__ = "2.9.1"
66

77
# Work around to update TensorFlow's absl.logging threshold which alters the
88
# default Python logging output behavior when present.

0 commit comments

Comments
 (0)