Skip to content

Commit

Permalink
fix CI
Browse files Browse the repository at this point in the history
  • Loading branch information
adRn-s committed Jul 24, 2024
1 parent dc3329a commit c075298
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/deps.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,9 @@ jobs:

- run: pip install pip-compile-multi
- run: |
ls backend/requirements/*.in | cut -d'/' -f3 | rev | cut -d. -f2 | rev | \
xargs -I{} mv backend/requirements/{}.in backend/requirements/{}.${{ matrix.python-version }}.in
pip-compile-multi -d backend/requirements --backtracking --autoresolve --allow-unsafe
mkdir -p backend/requirements/${{ matrix.python-version }}
ls backend/requirements/*.in | cut -d'/' -f3 | rev | cut -d. -f2 | rev | xargs -I{} cp backend/requirements/{}.in backend/requirements/${{ matrix.python-version }}/{}.in
pip-compile-multi -d backend/requirements/${{ matrix.python-version }} --backtracking --autoresolve --allow-unsafe
- uses: peter-evans/create-pull-request@v6
with:
Expand All @@ -53,7 +53,7 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r backend/requirements/prod.${{ matrix.python-version }}.txt
pip install -r backend/requirements/${{ matrix.python-version }}/prod.txt
# Frontend (VueJS)
Expand Down
2 changes: 1 addition & 1 deletion backend/requirements/base.in
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ xlwt
fpdf2
numpy
pandas
distutils ; python_version > "3.10" # deprecated since, and removed on Py 3.12
distutils #; python_version > "3.10" # deprecated since, and removed on Py 3.12
#bioblend # metadata_exporter unused app
openpyxl
python-docx
Expand Down

0 comments on commit c075298

Please sign in to comment.