Skip to content

Commit

Permalink
Release v3.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
calpt committed Sep 15, 2022
1 parent 40e92f0 commit ca32936
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ Thus, most files in this repository are direct copies from the HuggingFace Trans

## Installation

`adapter-transformers` currently supports **Python 3.6+** and **PyTorch 1.3.1+**.
`adapter-transformers` currently supports **Python 3.7+** and **PyTorch 1.3.1+**.
After [installing PyTorch](https://pytorch.org/get-started/locally/), you can install `adapter-transformers` from PyPI ...

```
Expand Down
2 changes: 1 addition & 1 deletion adapter_docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
docs_versions = [
"adapters1.1.1",
"adapters2.3.0",
"adapters3.0.1",
"adapters3.1.0",
]


Expand Down
2 changes: 1 addition & 1 deletion adapter_docs/installation.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Installation

Our *adapter-transformers* package is a drop-in replacement for Huggingface's *transformers* library.
It currently supports Python 3.6+ and PyTorch 1.3.1+. You will have to [install PyTorch](https://pytorch.org/get-started/locally/) first.
It currently supports Python 3.7+ and PyTorch 1.3.1+. You will have to [install PyTorch](https://pytorch.org/get-started/locally/) first.

```{eval-rst}
.. important::
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@
"fugashi>=1.0",
"GitPython<3.1.19",
"hf-doc-builder>=0.3.0",
"huggingface-hub>=0.1.0,<0.8.0",
"huggingface-hub>=0.1.0,<1.0",
"importlib_metadata",
"ipadic>=1.0.0,<2.0",
"isort>=5.5.4",
Expand Down Expand Up @@ -417,7 +417,7 @@ def run(self):

setup(
name="adapter-transformers",
version="3.1.0a1",
version="3.1.0",
author="Jonas Pfeiffer, Andreas Rücklé, Clifton Poth, Hannah Sterz, based on work by the HuggingFace team and community",
author_email="[email protected]",
description="A friendly fork of HuggingFace's Transformers, adding Adapters to PyTorch language models",
Expand Down
2 changes: 1 addition & 1 deletion src/transformers/adapters/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.

__version__ = "3.1.0a1"
__version__ = "3.1.0"

from typing import TYPE_CHECKING

Expand Down

0 comments on commit ca32936

Please sign in to comment.