|
36 | 36 |
|
37 | 37 | 7. Copy the release notes from RELEASE.md to the tag in github once everything is looking hunky-dory.
|
38 | 38 |
|
39 |
| -8. Update the documentation commit in .circleci/deploy.sh for the accurate documentation to be displayed |
| 39 | +8. Add the release version to docs/source/_static/js/custom.js and .circleci/deploy.sh |
40 | 40 |
|
41 | 41 | 9. Update README.md to redirect to correct documentation.
|
42 | 42 | """
|
|
71 | 71 | # keras2onnx and onnxconverter-common version is specific through a commit until 1.7.0 lands on pypi
|
72 | 72 | extras["tf"] = [
|
73 | 73 | "tensorflow",
|
74 |
| - "onnxconverter-common @ git+git://github.com/microsoft/onnxconverter-common.git@f64ca15989b6dc95a1f3507ff6e4c395ba12dff5#egg=onnxconverter-common", |
75 |
| - "keras2onnx @ git+git://github.com/onnx/keras-onnx.git@cbdc75cb950b16db7f0a67be96a278f8d2953b48#egg=keras2onnx" |
| 74 | + "onnxconverter-common", |
| 75 | + "keras2onnx" |
76 | 76 | ]
|
77 | 77 | extras["tf-cpu"] = [
|
78 | 78 | "tensorflow-cpu",
|
79 |
| - "onnxconverter-common @ git+git://github.com/microsoft/onnxconverter-common.git@f64ca15989b6dc95a1f3507ff6e4c395ba12dff5#egg=onnxconverter-common", |
80 |
| - "keras2onnx @ git+git://github.com/onnx/keras-onnx.git@cbdc75cb950b16db7f0a67be96a278f8d2953b48#egg=keras2onnx" |
| 79 | + "onnxconverter-common", |
| 80 | + "keras2onnx" |
81 | 81 | ]
|
82 | 82 | extras["torch"] = ["torch"]
|
83 | 83 |
|
|
89 | 89 | extras["docs"] = ["recommonmark", "sphinx", "sphinx-markdown-tables", "sphinx-rtd-theme==0.4.3", "sphinx-copybutton"]
|
90 | 90 | extras["quality"] = [
|
91 | 91 | "black",
|
92 |
| - "isort @ git+git://github.com/timothycrosley/isort.git@e63ae06ec7d70b06df9e528357650281a3d3ec22#egg=isort", |
| 92 | + "isort", |
93 | 93 | "flake8",
|
94 | 94 | ]
|
95 | 95 | extras["dev"] = extras["testing"] + extras["quality"] + ["mecab-python3<1", "scikit-learn", "tensorflow", "torch"]
|
96 | 96 |
|
97 | 97 | setup(
|
98 | 98 | name="transformers",
|
99 |
| - version="2.11.0", |
| 99 | + version="3.0.0", |
100 | 100 | 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",
|
101 | 101 | author_email="thomas@huggingface.co",
|
102 | 102 | description="State-of-the-art Natural Language Processing for TensorFlow 2.0 and PyTorch",
|
|
109 | 109 | packages=find_packages("src"),
|
110 | 110 | install_requires=[
|
111 | 111 | "numpy",
|
112 |
| - "tokenizers == 0.8.0-rc3", |
| 112 | + "tokenizers == 0.8.0-rc4", |
113 | 113 | # dataclasses for Python versions that don't have it
|
114 | 114 | "dataclasses;python_version<'3.7'",
|
115 | 115 | # utilities from PyPA to e.g. compare versions
|
|
0 commit comments