mirror of https://github.com/dapr/quickstarts.git
install typing-extensions for all python building blocks
Signed-off-by: MD Ashique <noorani.ashique5@gmail.com>
This commit is contained in:
parent
598024364f
commit
b31d8949fe
|
|
@ -96,7 +96,7 @@ jobs:
|
|||
- name: Validate building blocks with Python
|
||||
run: |
|
||||
variants=("http" "sdk")
|
||||
skip_buildingblock=("./bindings/python/sdk" "./configuration/python/sdk" "./pub_sub/python/sdk" "./state_management/python/sdk" "./service_invocation/python/http" "./configuration/python/http" "./bindings/python/http" "./pub_sub/python/http" "./state_management/python/http" "./secrets_management/python/http")
|
||||
skip_buildingblock=("./service_invocation/python/http" "./configuration/python/http" "./bindings/python/http" "./pub_sub/python/http" "./state_management/python/http" "./secrets_management/python/http")
|
||||
building_blocks=$(find . -maxdepth 1 -mindepth 1 -type d)
|
||||
for building_block in $building_blocks; do
|
||||
for variant in "${variants[@]}"
|
||||
|
|
|
|||
|
|
@ -39,7 +39,8 @@ name: Install python dependencies
|
|||
|
||||
```bash
|
||||
cd ./batch
|
||||
pip3 install -r requirements.txt
|
||||
pip3 install -r requirements.txt
|
||||
pip3 install typing-extensions
|
||||
```
|
||||
|
||||
<!-- END_STEP -->
|
||||
|
|
|
|||
|
|
@ -38,6 +38,7 @@ name: Install python dependencies
|
|||
```bash
|
||||
cd ./order-processor
|
||||
pip3 install -r requirements.txt
|
||||
pip3 install typing-extensions
|
||||
```
|
||||
|
||||
<!-- END_STEP -->
|
||||
|
|
|
|||
|
|
@ -22,7 +22,8 @@ name: run
|
|||
|
||||
```bash
|
||||
cd ./order-processor
|
||||
pip3 install -r requirements.txt
|
||||
pip3 install -r requirements.txt
|
||||
pip3 install typing-extensions
|
||||
```
|
||||
|
||||
<!-- END_STEP -->
|
||||
|
|
|
|||
|
|
@ -21,7 +21,9 @@ name: Install Python dependencies
|
|||
-->
|
||||
|
||||
```bash
|
||||
pip3 install -r order-processor/requirements.txt
|
||||
cd ./order-processor
|
||||
pip3 install -r requirements.txt
|
||||
pip3 install typing-extensions
|
||||
```
|
||||
|
||||
<!-- END_STEP -->
|
||||
|
|
@ -54,7 +56,9 @@ name: Install Python dependencies
|
|||
-->
|
||||
|
||||
```bash
|
||||
pip3 install -r checkout/requirements.txt
|
||||
cd ./checkout
|
||||
pip3 install -r requirements.txt
|
||||
pip3 install typing-extensions
|
||||
```
|
||||
|
||||
<!-- END_STEP -->
|
||||
|
|
|
|||
|
|
@ -21,6 +21,7 @@ name: Install python dependencies
|
|||
```bash
|
||||
cd ./order-processor
|
||||
pip3 install -r requirements.txt
|
||||
pip3 install typing-extensions
|
||||
```
|
||||
|
||||
<!-- END_STEP -->
|
||||
|
|
|
|||
Loading…
Reference in New Issue