Skip to content

Commit b0892fa

Browse files
committed
Release: v3.0.2
1 parent f1e2e42 commit b0892fa

File tree

3 files changed

+13
-13
lines changed

3 files changed

+13
-13
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'3.0.0'
29+
release = u'3.0.2'
3030

3131

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

setup.py

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -71,17 +71,17 @@
7171
# keras2onnx and onnxconverter-common version is specific through a commit until 1.7.0 lands on pypi
7272
extras["tf"] = [
7373
"tensorflow",
74-
# "onnxconverter-common",
75-
# "keras2onnx"
76-
"onnxconverter-common @ git+git://github.com/microsoft/onnxconverter-common.git@f64ca15989b6dc95a1f3507ff6e4c395ba12dff5#egg=onnxconverter-common",
77-
"keras2onnx @ git+git://github.com/onnx/keras-onnx.git@cbdc75cb950b16db7f0a67be96a278f8d2953b48#egg=keras2onnx"
74+
"onnxconverter-common",
75+
"keras2onnx"
76+
# "onnxconverter-common @ git+git://github.com/microsoft/onnxconverter-common.git@f64ca15989b6dc95a1f3507ff6e4c395ba12dff5#egg=onnxconverter-common",
77+
# "keras2onnx @ git+git://github.com/onnx/keras-onnx.git@cbdc75cb950b16db7f0a67be96a278f8d2953b48#egg=keras2onnx"
7878
]
7979
extras["tf-cpu"] = [
8080
"tensorflow-cpu",
81-
# "onnxconverter-common",
82-
# "keras2onnx"
83-
"onnxconverter-common @ git+git://github.com/microsoft/onnxconverter-common.git@f64ca15989b6dc95a1f3507ff6e4c395ba12dff5#egg=onnxconverter-common",
84-
"keras2onnx @ git+git://github.com/onnx/keras-onnx.git@cbdc75cb950b16db7f0a67be96a278f8d2953b48#egg=keras2onnx"
81+
"onnxconverter-common",
82+
"keras2onnx"
83+
# "onnxconverter-common @ git+git://github.com/microsoft/onnxconverter-common.git@f64ca15989b6dc95a1f3507ff6e4c395ba12dff5#egg=onnxconverter-common",
84+
# "keras2onnx @ git+git://github.com/onnx/keras-onnx.git@cbdc75cb950b16db7f0a67be96a278f8d2953b48#egg=keras2onnx"
8585
]
8686
extras["torch"] = ["torch"]
8787

@@ -93,15 +93,15 @@
9393
extras["docs"] = ["recommonmark", "sphinx", "sphinx-markdown-tables", "sphinx-rtd-theme==0.4.3", "sphinx-copybutton"]
9494
extras["quality"] = [
9595
"black",
96-
# "isort",
97-
"isort @ git+git://github.com/timothycrosley/isort.git@e63ae06ec7d70b06df9e528357650281a3d3ec22#egg=isort",
96+
"isort",
97+
# "isort @ git+git://github.com/timothycrosley/isort.git@e63ae06ec7d70b06df9e528357650281a3d3ec22#egg=isort",
9898
"flake8",
9999
]
100100
extras["dev"] = extras["testing"] + extras["quality"] + ["mecab-python3<1", "scikit-learn", "tensorflow", "torch"]
101101

102102
setup(
103103
name="transformers",
104-
version="3.0.1",
104+
version="3.0.2",
105105
author="Thomas Wolf, Lysandre Debut, Victor Sanh, Julien Chaumond, Sam Shleifer, Patrick von Platen, Google AI Language Team Authors, Open AI team Authors, Facebook AI Authors, Carnegie Mellon University Authors",
106106
author_email="thomas@huggingface.co",
107107
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__ = "3.0.1"
5+
__version__ = "3.0.2"
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)