File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1717
1818 steps :
1919 - uses : actions/checkout@v4
20+ with :
21+ submodules : recursive
2022 - name : Set up Python
2123 uses : actions/setup-python@v5
2224 with :
Original file line number Diff line number Diff line change @@ -19,21 +19,22 @@ jobs:
1919
2020 steps :
2121 - uses : actions/checkout@v4
22+ with :
23+ submodules : recursive
2224 - name : Set up Python 3.12
2325 uses : actions/setup-python@v3
2426 with :
2527 python-version : " >=3.12"
2628 - name : Install dependencies
2729 run : |
2830 python -m pip install --upgrade pip
29- git submodule update --init --recursive
3031 pip install numpy
3132 pip install scipy
3233 pip install pydantic
3334 pip install accelerator-toolbox
3435 pip install matplotlib
3536 pip install h5py
36- pip install pyaml
37+ pip install PyYaml
3738 pip install flake8 pytest
3839 if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
3940 - name : Lint with flake8
Original file line number Diff line number Diff line change 88__title__ = "pyAML"
99__description__ = "Python Accelerator Middle Layer"
1010__url__ = "https://github.com/python-accelerator-middle-layer/pyaml"
11- __version__ = "0.2.1 "
11+ __version__ = "0.2.2 "
1212__author__ = "pyAML collaboration"
1313__author_email__ = ""
1414
You can’t perform that action at this time.
0 commit comments