Avoid tox 4.0

This commit is contained in:
Ivan Kravets
2022-12-13 19:36:15 +02:00
parent 337e7fe43a
commit 7bbfaab891
2 changed files with 2 additions and 2 deletions

View File

@ -25,7 +25,7 @@ jobs:
- name: Install dependencies - name: Install dependencies
run: | run: |
python -m pip install --upgrade pip python -m pip install --upgrade pip
pip install tox pip install "tox<4"
- name: Python Lint - name: Python Lint
if: ${{ matrix.python-version != '3.6' }} if: ${{ matrix.python-version != '3.6' }}

View File

@ -443,7 +443,7 @@ def test_custom_project_libraries(
) )
assert pkgs_to_specs(lm.get_installed()) == [ assert pkgs_to_specs(lm.get_installed()) == [
PackageSpec("ArduinoJson@5.13.4"), PackageSpec("ArduinoJson@5.13.4"),
PackageSpec("Nanopb@0.4.6+4"), PackageSpec("Nanopb@0.4.7"),
] ]
assert config.get("env:devkit", "lib_deps") == [ assert config.get("env:devkit", "lib_deps") == [
"bblanchon/ArduinoJson@^5", "bblanchon/ArduinoJson@^5",