Skip to content

Commit e71be69

Browse files
committed
0.2.0 - fix workflow script
Fix: The workflow script `python-publish.yml` should not contain the dependencies for testing.
1 parent 8426b7a commit e71be69

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

.github/workflows/python-publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ jobs:
4848
run: |
4949
python -m pip install --upgrade pip
5050
pip install build wheel
51-
python -m pip install -r requirements.txt -r tests/requirements.txt -r requirements-dev.txt
51+
python -m pip install -r requirements.txt -r requirements-dev.txt
5252
- name: Use Yarn to build component
5353
run: |
5454
yarn build

Changelog.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@
2020
1. Fix: When using `Downloader`, the file size is not configured in the stream saver. Now, it has been fixed.
2121
2. Fix: The previous workflow scripts do not work any more. Adjust the scripts for including the required packages.
2222
3. Fix: Specify the extension version `pytest-flask` because `v1.2.0` does not support the newest `Flask`.
23+
4. Fix: The workflow script `python-publish.yml` should not contain the dependencies for testing.
2324

2425
#### :floppy_disk: Change
2526

0 commit comments

Comments
 (0)