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/.github/workflows/tests.yml b/.github/workflows/tests.yml index 6d5691a4..91a0e877 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,13 @@ 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 PyYaml pip install flake8 pytest if [ -f requirements.txt ]; then pip install -r requirements.txt; fi - name: Lint with flake8 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__ = ""