Skip to content

Commit 5e1f991

Browse files
committed
0.2.0 - fix workflow scripts
Fix: The previous workflow scripts do not work any more. Adjust the scripts for including the required packages.
1 parent aa72136 commit 5e1f991

File tree

3 files changed

+3
-4
lines changed

3 files changed

+3
-4
lines changed

.github/workflows/python-package.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,8 +42,7 @@ jobs:
4242
run: |
4343
python -m pip install --upgrade pip
4444
python -m pip install flake8 pytest wheel
45-
if [ -f requirements.txt ]; then python -m pip install -r requirements.txt; fi
46-
if [ -f tests/requirements.txt ]; then python -m pip install -r tests/requirements.txt; fi
45+
python -m pip install -r requirements.txt -r tests/requirements.txt -r requirements-dev.txt
4746
- name: Use Yarn to build component
4847
run: |
4948
yarn build

.github/workflows/python-publish.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,8 +48,7 @@ jobs:
4848
run: |
4949
python -m pip install --upgrade pip
5050
pip install build wheel
51-
if [ -f requirements.txt ]; then python -m pip install -r requirements.txt; fi
52-
if [ -f requirements-dev.txt ]; then python -m pip install -r requirements-dev.txt; fi
51+
python -m pip install -r requirements.txt -r tests/requirements.txt -r requirements-dev.txt
5352
- name: Use Yarn to build component
5453
run: |
5554
yarn build

Changelog.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@
1818
#### :wrench: Fix
1919

2020
1. Fix: When using `Downloader`, the file size is not configured in the stream saver. Now, it has been fixed.
21+
2. Fix: The previous workflow scripts do not work any more. Adjust the scripts for including the required packages.
2122

2223
#### :floppy_disk: Change
2324

0 commit comments

Comments
 (0)