diff --git a/.github/workflows/pr_dependencies.yml b/.github/workflows/pr_dependencies.yml deleted file mode 100644 index 0ff2baeb20..0000000000 --- a/.github/workflows/pr_dependencies.yml +++ /dev/null @@ -1,38 +0,0 @@ -name: Pull Request Dependencies - -on: - issues: - types: - - opened - - edited - - closed - - reopened - pull_request_target: - types: - - opened - - edited - - closed - - reopened - - synchronize - -jobs: - check: - runs-on: ubuntu-latest - steps: - - uses: z0al/dependent-issues@v1 - env: - GITHUB_TOKEN: ${{ secrets.BOT_TOKEN }} - with: - # (Optional) A comma-separated list of keywords. Default - # "depends on, blocked by" - keywords: depends on, blocked by - - # (Optional) A custom comment body. It supports `{{ dependencies }}` token. - comment: > - This PR/issue depends on: - - {{ dependencies }} - - --- - - Automatically provided by **[Dependent Issues](https://github.com/z0al/dependent-issues)** (🤖). \ No newline at end of file diff --git a/LICENSE b/LICENSE index 27465606a2..776bedce28 100644 --- a/LICENSE +++ b/LICENSE @@ -1,4 +1,4 @@ -Copyright 2020-2023 The AdapterHub Team. All rights reserved. +Copyright 2020-2024 The AdapterHub Team. All rights reserved. Apache License Version 2.0, January 2004 diff --git a/docs/conf.py b/docs/conf.py index 5f73a52d99..095a5bd638 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -20,7 +20,7 @@ # -- Project information ----------------------------------------------------- project = "AdapterHub" -copyright = "2020-2023, AdapterHub Team" +copyright = "2020-2024, AdapterHub Team" author = "AdapterHub Team" docs_versions = [ diff --git a/setup.py b/setup.py index b4c89ccd61..424eab7d1c 100644 --- a/setup.py +++ b/setup.py @@ -61,7 +61,7 @@ "sphinx-multiversion", "timeout-decorator", "torch>=1.10,!=1.12.0", - "transformers==4.35.2", + "transformers~=4.35.2", "beautifulsoup4", ] @@ -146,7 +146,7 @@ def deps_list(*pkgs): setup( name="adapters", - version="0.1.0", + version="0.1.1", author="The AdapterHub team and community contributors", author_email="pfeiffer@ukp.tu-darmstadt.de", description="A Unified Library for Parameter-Efficient and Modular Transfer Learning", diff --git a/src/adapters/__init__.py b/src/adapters/__init__.py index 942617e1d3..221b7db190 100644 --- a/src/adapters/__init__.py +++ b/src/adapters/__init__.py @@ -16,7 +16,7 @@ # See the License for the specific language governing permissions and # limitations under the License. -__version__ = "0.1.0" +__version__ = "0.1.1" from typing import TYPE_CHECKING