mirror of https://github.com/ARMmbed/mbed-os.git
Fix incorrect requirements line for dotenv (#193)
* Fix incorrect requirements line for dotenv * Also use requirements.txt in CI jobspull/15494/head
parent
3af1c75ca8
commit
7c61babb10
|
@ -10,10 +10,9 @@ jobs:
|
||||||
- name: Checkout
|
- name: Checkout
|
||||||
uses: actions/checkout@v3
|
uses: actions/checkout@v3
|
||||||
|
|
||||||
- name: Install the latest mbed-tools
|
- name: Install Python packages
|
||||||
run: |
|
run: |
|
||||||
pip3 install --upgrade mbed-tools
|
python3 -m pip install -r tools/requirements.txt
|
||||||
mbedtools --version
|
|
||||||
|
|
||||||
- name: Build NUCLEO_G031K8 with baremetal profile
|
- name: Build NUCLEO_G031K8 with baremetal profile
|
||||||
run: |
|
run: |
|
||||||
|
|
|
@ -10,6 +10,10 @@ jobs:
|
||||||
- name: Checkout
|
- name: Checkout
|
||||||
uses: actions/checkout@v3
|
uses: actions/checkout@v3
|
||||||
|
|
||||||
|
- name: Install Python packages
|
||||||
|
run: |
|
||||||
|
python3 -m pip install -r tools/requirements.txt
|
||||||
|
|
||||||
- name: Build the multiple_executables example
|
- name: Build the multiple_executables example
|
||||||
run: |
|
run: |
|
||||||
cd tools/cmake/tests/multiple_executables/
|
cd tools/cmake/tests/multiple_executables/
|
||||||
|
|
|
@ -7,7 +7,7 @@ prettytable>=2.0,<4.0; python_version >= '3.6'
|
||||||
future>=0.18.0,<1.0
|
future>=0.18.0,<1.0
|
||||||
jinja2>=2.11.3
|
jinja2>=2.11.3
|
||||||
intelhex>=2.3.0,<3.0.0
|
intelhex>=2.3.0,<3.0.0
|
||||||
dotenv
|
python-dotenv
|
||||||
Click>=7.1,<9
|
Click>=7.1,<9
|
||||||
GitPython
|
GitPython
|
||||||
tqdm
|
tqdm
|
||||||
|
|
Loading…
Reference in New Issue