Skip to content

Commit

Permalink
ci: add pillow to requirements
Browse files Browse the repository at this point in the history
  • Loading branch information
T-Dynamos committed Mar 25, 2024
1 parent d3c8ff5 commit e6b4436
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/default.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
uses: actions/checkout@v2
- name: Install dependencies
run: |
pip install --upgrade pip setuptools rich wheel requests
pip install --upgrade pip setuptools rich wheel requests pillow
- name: Build wheel
run: |
python setup.py ${{ matrix.dist }}
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,10 @@ jobs:
uses: actions/checkout@v2
- name: Install dependencies
run: |
/opt/python/cp39-cp39/bin/pip install --upgrade pip setuptools rich wheel requests
/opt/python/cp310-cp310/bin/pip install --upgrade pip setuptools rich wheel requests
/opt/python/cp311-cp311/bin/pip install --upgrade pip setuptools rich wheel requests
/opt/python/cp312-cp312/bin/pip install --upgrade pip setuptools rich wheel requests
/opt/python/cp39-cp39/bin/pip install --upgrade pip setuptools rich wheel requests pillow
/opt/python/cp310-cp310/bin/pip install --upgrade pip setuptools rich wheel requests pillow
/opt/python/cp311-cp311/bin/pip install --upgrade pip setuptools rich wheel requests pillow
/opt/python/cp312-cp312/bin/pip install --upgrade pip setuptools rich wheel requests pillow
- name: Build wheel
run: |
/opt/python/cp39-cp39/bin/python setup.py bdist_wheel
Expand Down

0 comments on commit e6b4436

Please sign in to comment.