From 3c1582aaa5bbd1e1b41662cbd13534fa2f5f1205 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Luk=C3=A1=C5=A1=20Doktor?= Date: Tue, 24 Mar 2026 14:52:48 +0100 Subject: [PATCH 1/3] workflows: Remove aexpect hack MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit the 81 is merged, there should be no need to install it's dependencies. Signed-off-by: Lukáš Doktor --- .github/workflows/ci.yml | 2 -- 1 file changed, 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 2668337..406fd3c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -22,7 +22,5 @@ jobs: - uses: actions/setup-python@v5 with: python-version: ${{ matrix.python-version }} - - name: Install missing aexpect dependency (remove when https://github.com/avocado-framework/aexpect/pull/81 is merged) - run: pip install six numpy - run: pip install -e .[dev] - run: make check From b5c4a989797a8328211e59109409873ab351626f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Luk=C3=A1=C5=A1=20Doktor?= Date: Tue, 24 Mar 2026 14:53:47 +0100 Subject: [PATCH 2/3] docs: Remove outdated badges MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit these are not available anymore. Signed-off-by: Lukáš Doktor --- docs/source/introduction.rst | 16 ---------------- 1 file changed, 16 deletions(-) diff --git a/docs/source/introduction.rst b/docs/source/introduction.rst index cd71177..19168e1 100644 --- a/docs/source/introduction.rst +++ b/docs/source/introduction.rst @@ -65,19 +65,3 @@ visualization of the changes:: .. image:: https://readthedocs.org/projects/run-perf/badge/?version=latest :target: https://run-perf.readthedocs.io/en/latest/?badge=latest :alt: Documentation Status - -.. image:: https://img.shields.io/lgtm/alerts/g/distributed-system-analysis/run-perf.svg?logo=lgtm&logoWidth=18 - :target: https://lgtm.com/projects/g/distributed-system-analysis/run-perf/alerts/ - :alt: LGTM alerts - -.. image:: https://img.shields.io/lgtm/grade/python/g/distributed-system-analysis/run-perf.svg?logo=lgtm&logoWidth=18 - :target: https://lgtm.com/projects/g/distributed-system-analysis/run-perf/context:python - :alt: LGTM Python code quality - -.. image:: https://api.codeclimate.com/v1/badges/5a2ca7137e0094c24c18/maintainability - :target: https://codeclimate.com/github/distributed-system-analysis/run-perf/maintainability - :alt: Maintainability - -.. image:: https://api.codeclimate.com/v1/badges/5a2ca7137e0094c24c18/test_coverage - :target: https://codeclimate.com/github/distributed-system-analysis/run-perf/test_coverage - :alt: Test Coverage From 209f94220d8861abc45227b372e85b491b3be0a4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Luk=C3=A1=C5=A1=20Doktor?= Date: Tue, 24 Mar 2026 14:54:26 +0100 Subject: [PATCH 3/3] readthedocs: Change requirements deps MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit we removed the requirements.txt, let's tell readthedocs to use pip instead. Signed-off-by: Lukáš Doktor --- .readthedocs.yaml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.readthedocs.yaml b/.readthedocs.yaml index c35581a..ccbab2a 100644 --- a/.readthedocs.yaml +++ b/.readthedocs.yaml @@ -19,5 +19,8 @@ sphinx: # https://docs.readthedocs.io/en/stable/guides/reproducible-builds.html python: install: - - requirements: requirements.txt + - method: pip + path: . + extra_requirements: + - dev