Update deps

This commit is contained in:
Ivan Kravets
2023-07-27 15:04:09 +03:00
parent 3268b516a9
commit a983075dac
2 changed files with 3 additions and 3 deletions

View File

@@ -35,7 +35,7 @@ minimal_requirements = [
"click==8.1.*; " + py_gte_37, "click==8.1.*; " + py_gte_37,
"colorama", "colorama",
"marshmallow==3.14.1; " + py_below_37, "marshmallow==3.14.1; " + py_below_37,
"marshmallow==3.19.*; " + py_gte_37, "marshmallow==3.20.*; " + py_gte_37,
"pyelftools==0.29", "pyelftools==0.29",
"pyserial==3.5.*", # keep in sync "device/monitor/terminal.py" "pyserial==3.5.*", # keep in sync "device/monitor/terminal.py"
"requests==2.*", "requests==2.*",
@@ -47,7 +47,7 @@ home_requirements = [
"ajsonrpc==1.2.*", "ajsonrpc==1.2.*",
"starlette==0.19.1; " + py_below_37, "starlette==0.19.1; " + py_below_37,
"starlette==0.29.0; " + py_37, "starlette==0.29.0; " + py_37,
"starlette==0.30.*; " + py_gte_38, "starlette==0.31.*; " + py_gte_38,
"uvicorn==0.16.0; " + py_below_37, "uvicorn==0.16.0; " + py_below_37,
"uvicorn==0.22.0; " + py_37, "uvicorn==0.22.0; " + py_37,
"uvicorn==0.23.*; " + py_gte_38, "uvicorn==0.23.*; " + py_gte_38,

View File

@@ -511,6 +511,7 @@ TEST-TEST-TEST-TEST
assert verbose_result.exit_code != 0 assert verbose_result.exit_code != 0
assert "license information is incorrect" in verbose_result.output.lower() assert "license information is incorrect" in verbose_result.output.lower()
@pytest.mark.parametrize("framework", ["arduino", "stm32cube", "zephyr"]) @pytest.mark.parametrize("framework", ["arduino", "stm32cube", "zephyr"])
@pytest.mark.parametrize("check_tool", ["cppcheck", "clangtidy", "pvs-studio"]) @pytest.mark.parametrize("check_tool", ["cppcheck", "clangtidy", "pvs-studio"])
def test_check_embedded_platform_all_tools( def test_check_embedded_platform_all_tools(
@@ -539,7 +540,6 @@ int main() {
""" """
) )
tmpdir.join("platformio.ini").write(config) tmpdir.join("platformio.ini").write(config)
result = clirunner.invoke(cmd_check, ["--project-dir", str(tmpdir)]) result = clirunner.invoke(cmd_check, ["--project-dir", str(tmpdir)])
validate_cliresult(result) validate_cliresult(result)