Skip to content

Commit 4b3ee9c

Browse files
committed
Release: v3.1.0
1 parent afc4ece commit 4b3ee9c

File tree

3 files changed

+11
-11
lines changed

3 files changed

+11
-11
lines changed

docs/source/conf.py

+1-1
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.2'
29+
release = u'3.1.0'
3030

3131

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

setup.py

+9-9
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
extras["onnxruntime"] = ["onnxruntime>=1.4.0", "onnxruntime-tools>=1.4.2"]
@@ -97,7 +97,7 @@
9797

9898
setup(
9999
name="transformers",
100-
version="3.0.2",
100+
version="3.1.0",
101101
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",
102102
author_email="[email protected]",
103103
description="State-of-the-art Natural Language Processing for TensorFlow 2.0 and PyTorch",

src/transformers/__init__.py

+1-1
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.2"
5+
__version__ = "3.1.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)