Skip to content

Commit ed9c636

Browse files
authored
Merge pull request #130 from python-accelerator-middle-layer/128-pysc-packaging-for-pypi
PySC packaging for PyPi
2 parents 57d82a0 + b17314f commit ed9c636

3 files changed

Lines changed: 6 additions & 3 deletions

File tree

.github/workflows/deploy-pypi.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,8 @@ jobs:
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:

.github/workflows/tests.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff 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

pyaml/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
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

0 commit comments

Comments
 (0)