diff --git a/.circleci/config.templ.yml b/.circleci/config.templ.yml index 95c87d82f36..d4b5417b58f 100644 --- a/.circleci/config.templ.yml +++ b/.circleci/config.templ.yml @@ -80,7 +80,7 @@ commands: description: "Install riot" steps: # Make sure we install and run riot on Python 3 - - run: pip3 install riot==0.19.1 + - run: pip3 install riot==0.20.0 setup_rust: description: "Install rust toolchain" diff --git a/.circleci/config.yml b/.circleci/config.yml index cbac9570ebe..fcf74292ee3 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -31,7 +31,7 @@ jobs: name: Generate config command: | export GIT_COMMIT_DESC=$(git log -n 1 $CIRCLE_SHA1) - pip3 install riot==0.19.1 + pip3 install riot==0.20.0 riot -P -v run --pass-env -s circleci-gen-config -- -v - continuation/continue: configuration_path: .circleci/config.gen.yml diff --git a/.github/workflows/requirements-locks.yml b/.github/workflows/requirements-locks.yml index 3192f61db64..3e51e3c229e 100644 --- a/.github/workflows/requirements-locks.yml +++ b/.github/workflows/requirements-locks.yml @@ -23,7 +23,7 @@ jobs: run: pyenv global 3.10 3.7 3.8 3.9 3.11 3.12 - name: Install Dependencies - run: pip install --upgrade pip && pip install riot + run: pip install --upgrade pip && pip install riot==0.20.0 - name: Generate riot locks run: scripts/compile-and-prune-test-requirements diff --git a/.gitlab/package.yml b/.gitlab/package.yml index c8091f47984..9a5581f12b3 100644 --- a/.gitlab/package.yml +++ b/.gitlab/package.yml @@ -15,6 +15,7 @@ build_base_venvs: CMAKE_BUILD_PARALLEL_LEVEL: 24 PIP_VERBOSE: 1 script: + - pip install riot==0.20.0 - riot -P -v generate --python=$PYTHON_VERSION artifacts: name: venv_$PYTHON_VERSION diff --git a/hatch.toml b/hatch.toml index 35b4f6fe3cd..ab3eb67c4c3 100644 --- a/hatch.toml +++ b/hatch.toml @@ -22,7 +22,7 @@ dependencies = [ "ddapm-test-agent>=1.2.0", "packaging==23.1", "pygments==2.16.1", - "riot==0.19.1", + "riot==0.20.0", "ruff==0.1.3", "clang-format==18.1.5", ] diff --git a/scripts/ddtest b/scripts/ddtest index 9003d0446e7..80f5a582b7f 100755 --- a/scripts/ddtest +++ b/scripts/ddtest @@ -12,7 +12,7 @@ fi # retry docker pull if fails for i in {1..3}; do docker-compose pull -q testrunner && break || sleep 3; done -FULL_CMD="pip install -q --disable-pip-version-check riot==0.19.1 hatch && $CMD" +FULL_CMD="pip install -q --disable-pip-version-check riot==0.20.0 hatch && $CMD" # install and upgrade riot in case testrunner image has not been updated