From 446841e8da450d4118e415f114079f31cb580a7d Mon Sep 17 00:00:00 2001 From: guillaumepichon Date: Mon, 19 Jan 2026 14:23:01 +0100 Subject: [PATCH 1/3] Test pipeline corrections --- .github/workflows/tests.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 6d5691a4..c2e66666 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -19,6 +19,8 @@ jobs: steps: - uses: actions/checkout@v4 + with: + submodules: recursive - name: Set up Python 3.12 uses: actions/setup-python@v3 with: @@ -26,14 +28,12 @@ jobs: - name: Install dependencies run: | python -m pip install --upgrade pip - git submodule update --init --recursive pip install numpy pip install scipy pip install pydantic pip install accelerator-toolbox pip install matplotlib pip install h5py - pip install pyaml pip install flake8 pytest if [ -f requirements.txt ]; then pip install -r requirements.txt; fi - name: Lint with flake8 From a1d23f843755a296f4f7dbc5487c90c521f381b1 Mon Sep 17 00:00:00 2001 From: guillaumepichon Date: Mon, 19 Jan 2026 14:27:03 +0100 Subject: [PATCH 2/3] Test pipeline corrections --- .github/workflows/tests.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index c2e66666..91a0e877 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -34,6 +34,7 @@ jobs: pip install accelerator-toolbox pip install matplotlib pip install h5py + pip install PyYaml pip install flake8 pytest if [ -f requirements.txt ]; then pip install -r requirements.txt; fi - name: Lint with flake8 From b17314f4f8a924248b8d08568e0fa729d73edb60 Mon Sep 17 00:00:00 2001 From: guillaumepichon Date: Mon, 19 Jan 2026 14:34:42 +0100 Subject: [PATCH 3/3] PyPi pipeline correction and patch version bump --- .github/workflows/deploy-pypi.yaml | 2 ++ pyaml/__init__.py | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/deploy-pypi.yaml b/.github/workflows/deploy-pypi.yaml index 738987b2..b1c116ad 100644 --- a/.github/workflows/deploy-pypi.yaml +++ b/.github/workflows/deploy-pypi.yaml @@ -17,6 +17,8 @@ jobs: steps: - uses: actions/checkout@v4 + with: + submodules: recursive - name: Set up Python uses: actions/setup-python@v5 with: diff --git a/pyaml/__init__.py b/pyaml/__init__.py index 480a6ccf..afbbd11b 100644 --- a/pyaml/__init__.py +++ b/pyaml/__init__.py @@ -8,7 +8,7 @@ __title__ = "pyAML" __description__ = "Python Accelerator Middle Layer" __url__ = "https://github.com/python-accelerator-middle-layer/pyaml" -__version__ = "0.2.1" +__version__ = "0.2.2" __author__ = "pyAML collaboration" __author_email__ = ""