Skip to content

Commit e7cfc1a

Browse files
committed
Release: v2.9.0
1 parent 0ae96ff commit e7cfc1a

File tree

3 files changed

+6
-4
lines changed

3 files changed

+6
-4
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.8.0'
29+
release = u'2.9.0'
3030

3131

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

setup.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@
55
66
1. Change the version in __init__.py, setup.py as well as docs/source/conf.py.
77
8+
2. Unpin specific versions from setup.py (like isort).
9+
810
2. Commit these changes with the message: "Release: VERSION"
911
1012
3. Add a tag in git to mark the release: "git tag VERSION -m'Adds tag VERSION for pypi' "
@@ -76,14 +78,14 @@
7678
extras["docs"] = ["recommonmark", "sphinx", "sphinx-markdown-tables", "sphinx-rtd-theme"]
7779
extras["quality"] = [
7880
"black",
79-
"isort @ git+git://github.com/timothycrosley/isort.git@e63ae06ec7d70b06df9e528357650281a3d3ec22#egg=isort",
81+
"isort",
8082
"flake8",
8183
]
8284
extras["dev"] = extras["testing"] + extras["quality"] + ["mecab-python3", "scikit-learn", "tensorflow", "torch"]
8385

8486
setup(
8587
name="transformers",
86-
version="2.8.0",
88+
version="2.9.0",
8789
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",
8890
author_email="thomas@huggingface.co",
8991
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.8.0"
5+
__version__ = "2.9.0"
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)