Skip to content

Commit dcb140d

Browse files
peft in testing
1 parent 96dedd8 commit dcb140d

File tree

4 files changed

+3
-4
lines changed

4 files changed

+3
-4
lines changed

.github/workflows/test_ipex.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
matrix:
2121
torch-version: ["2.2.0", "2.3.*", "2.4.*"]
2222
transformers-version: ["4.39.0", "4.44.*"]
23-
python-version: [3.9]
23+
python-version: ["3.9"]
2424
os: [ubuntu-latest]
2525

2626
runs-on: ${{ matrix.os }}

.github/workflows/test_openvino.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ jobs:
4646
run: |
4747
pip install --upgrade pip
4848
pip install torch torchvision torchaudio --index-url https://download.pytorch.org/whl/cpu
49-
pip install .[openvino,openvino-tokenizers,diffusers,peft,tests] transformers[testing]==${{ matrix.transformers-version }}
49+
pip install .[openvino,openvino-tokenizers,diffusers,tests] transformers[testing]==${{ matrix.transformers-version }}
5050
5151
- name: Assert versions
5252
run: |

.github/workflows/test_openvino_slow.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@ jobs:
2424
strategy:
2525
fail-fast: false
2626
matrix:
27-
# TODO: testong python upper bound seems unnecessary
2827
# Testing lower and upper bound of supported Python versions
2928
# This also ensures that the test fails if dependencies break for Python 3.7
3029
python-version: ["3.9", "3.12"]

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,7 @@
5555
"tiktoken",
5656
"sentence-transformers",
5757
"open_clip_torch>=2.26.1",
58+
"peft",
5859
]
5960

6061
QUALITY_REQUIRE = ["black~=23.1", "ruff==0.4.4"]
@@ -71,7 +72,6 @@
7172
"diffusers": ["diffusers"],
7273
"quality": QUALITY_REQUIRE,
7374
"tests": TESTS_REQUIRE,
74-
"peft": ["peft"],
7575
}
7676

7777
setup(

0 commit comments

Comments
 (0)