diff --git a/.github/workflows/labelpr.yaml b/.github/workflows/labelpr.yaml index 5e69329b..afbbba55 100644 --- a/.github/workflows/labelpr.yaml +++ b/.github/workflows/labelpr.yaml @@ -13,7 +13,7 @@ jobs: github-token: ${{ secrets.GITHUB_TOKEN }} script: | // https://github.com/commitizen/conventional-commit-types - const valid_pr_types = ['feat', 'fix', 'docs', 'style', 'refactor', 'perf', 'test', 'build', 'ci', 'chore', 'revert']; + const valid_pr_types = ['feat', 'fix', 'docs', 'style', 'refactor', 'perf', 'test', 'build', 'ci', 'chore', 'revert', 'dependencies']; const title = context.payload.pull_request.title; @@ -28,4 +28,4 @@ jobs: const labels = context.payload.pull_request.labels; const new_labels = labels.filter(label => !valid_pr_types.includes(label.name)); // keep all labels that are not in valid_pr_types new_labels.push({name: pr_type}); - await github.rest.issues.update({ ...context.repo, issue_number: context.payload.number, labels: new_labels }); \ No newline at end of file + await github.rest.issues.update({ ...context.repo, issue_number: context.payload.number, labels: new_labels }); diff --git a/pyproject.toml b/pyproject.toml index a52bc449..bd3d41a3 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -24,7 +24,7 @@ dynamic = ["version"] dependencies = [ "numpy>=1.26.4,<2.3.0", "accelerate>=0.20.3,!=0.34,<1.7", -"transformers>=4.45,<4.51", +"transformers>=4.45,<4.52", "torch>=2.2.0,<2.6", "triton>=3.0,<3.2", "tqdm>=4.66.2,<5.0",