Skip to content

Commit

Permalink
Fix CI tests (#210)
Browse files Browse the repository at this point in the history
* fix ci ruuner creation

* fix python versions

* fix setup and test
  • Loading branch information
younesbelkada committed Mar 23, 2023
1 parent 2632e7e commit d8c3b6b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
needs: check_code_quality
strategy:
matrix:
python-version: [3.8, 3.9, 3.10]
python-version: ["3.8", "3.9", "3.10"]
os: ['ubuntu-latest', 'macos-latest', 'windows-latest']
runs-on: ${{ matrix.os }}
steps:
Expand Down
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
extras["quality"] = ["black ~= 22.0", "ruff>=0.0.241"]
extras["docs_specific"] = ["hf-doc-builder"]
extras["dev"] = extras["quality"] + extras["docs_specific"]
extras["test"] = extras["dev"] + ["pytest", "pytest-xdist", "parameterized"]

setup(
name="peft",
Expand Down

0 comments on commit d8c3b6b

Please sign in to comment.