Fix incorrect requirements line for dotenv (#193)

* Fix incorrect requirements line for dotenv

* Also use requirements.txt in CI jobs
pull/15494/head
Jamie Smith 2023-10-10 13:00:03 -07:00 committed by GitHub
parent 3af1c75ca8
commit 7c61babb10
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 7 additions and 4 deletions

View File

@ -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: |

View File

@ -9,6 +9,10 @@ jobs:
steps: steps:
- 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: |

View File

@ -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