Skip to content

Commit

Permalink
Up reqs
Browse files Browse the repository at this point in the history
  • Loading branch information
barseghyanartur committed Sep 11, 2024
1 parent 187e3b0 commit 9c89a5b
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -75,9 +75,9 @@ jobs:
python -m pip install --upgrade pip
- name: Install tox
run: |
python -m pip install --no-cache-dir tox-gh-actions pip-tools Django djangorestframework django-extensions drf_spectacular
python -m pip install --no-cache-dir tox-gh-actions uv Django djangorestframework django-extensions drf_spectacular
- name: Compile requirements
run: pip-compile examples/requirements/flask.in
run: uv pip compile examples/requirements/flask.in --no-strip-extras
- name: Install requirements
run: pip install --no-cache-dir -r examples/requirements/flask.txt
- name: Run test suite
Expand Down Expand Up @@ -121,9 +121,9 @@ jobs:
python -m pip install --upgrade pip
- name: Install tox
run: |
python -m pip install --no-cache-dir tox-gh-actions pip-tools Django djangorestframework django-extensions drf_spectacular
python -m pip install --no-cache-dir tox-gh-actions uv Django djangorestframework django-extensions drf_spectacular
- name: Compile requirements
run: pip-compile examples/requirements/ml.in
run: uv pip compile examples/requirements/ml.in --no-strip-extras
- name: Install requirements
run: pip install --no-cache-dir -r examples/requirements/ml.txt
- name: Run test suite
Expand Down
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,7 @@ def clean_readme(text: str) -> str:
"nlpaug", # data-augmentation
"nltk", # data-augmentation
"textaugment", # data-augmentation
"textblob>=0.17,<0.18",
"tika", # data-augmentation
"torch", # data-augmentation
"transformers", # data-augmentation
Expand Down

0 comments on commit 9c89a5b

Please sign in to comment.