Skip to content

Commit 57e1f3f

Browse files
committed
release 0.1.0
1 parent e98406e commit 57e1f3f

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

setup.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -85,20 +85,20 @@
8585

8686
EXTRAS_REQUIRE = {
8787
'apache-beam': ['apache-beam'],
88-
'tensorflow': ['tensorflow>=1.15.0'],
89-
'tensorflow_gpu': ['tensorflow-gpu>=1.15.0'],
88+
'tensorflow': ['tensorflow>=2.2.0'],
89+
'tensorflow_gpu': ['tensorflow-gpu>=2.2.0'],
9090
'torch': ['torch'],
9191
'tests': TESTS_REQUIRE,
9292
'quality': QUALITY_REQUIRE,
9393
}
9494

9595
setup(
9696
name='nlp',
97-
version="0.0.3",
97+
version="0.1.0",
9898
description=DOCLINES[0],
9999
long_description='\n'.join(DOCLINES[2:]),
100100
author='HuggingFace Inc.',
101-
author_email='thomas@huggingface.ce',
101+
author_email='thomas@huggingface.co',
102102
url='https://github.com/huggingface/nlp',
103103
download_url='https://github.com/huggingface/nlp/tags',
104104
license='Apache 2.0',

src/nlp/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
# pylint: enable=line-too-long
1919
# pylint: disable=g-import-not-at-top,g-bad-import-order,wrong-import-position
2020

21-
__version__ = "0.0.3"
21+
__version__ = "0.1.0"
2222

2323
from pyarrow import total_allocated_bytes
2424

0 commit comments

Comments
 (0)