diff --git a/.github/workflows/publish_emu_base.yml b/.github/workflows/publish_emu_base.yml index 868ec21..d760d3c 100644 --- a/.github/workflows/publish_emu_base.yml +++ b/.github/workflows/publish_emu_base.yml @@ -25,8 +25,10 @@ jobs: uses: actions/checkout@v4 with: ref: ${{ github.ref }} - - name: Set up Python + - name: Set up Python 3.10 uses: actions/setup-python@v5 + with: + python-version: '3.10' - name: Install Python dependencies run: | python -m pip install --upgrade pip diff --git a/.github/workflows/publish_emu_mps.yml b/.github/workflows/publish_emu_mps.yml index b96f800..076a98b 100644 --- a/.github/workflows/publish_emu_mps.yml +++ b/.github/workflows/publish_emu_mps.yml @@ -2,8 +2,7 @@ name: Publish emu-mps on: workflow_run: - workflows: ["Publish emu-base"] - branches: ["aq/github_publish"] + workflows: [Publish emu-base] types: - completed concurrency: @@ -23,8 +22,10 @@ jobs: uses: actions/checkout@v4 with: ref: ${{ github.ref }} - - name: Set up Python + - name: Set up Python 3.10 uses: actions/setup-python@v5 + with: + python-version: '3.10' - name: Install Python dependencies run: | python -m pip install --upgrade pip diff --git a/emu_base/__init__.py b/emu_base/__init__.py index 8ed935d..7f57232 100644 --- a/emu_base/__init__.py +++ b/emu_base/__init__.py @@ -44,4 +44,4 @@ "DEFAULT_MAX_KRYLOV_DIM", ] -__version__ = "1.2.1" +__version__ = "1.2.2" diff --git a/emu_mps/__init__.py b/emu_mps/__init__.py index 6b72031..244e7b3 100644 --- a/emu_mps/__init__.py +++ b/emu_mps/__init__.py @@ -35,4 +35,4 @@ "SecondMomentOfEnergy", ] -__version__ = "1.2.1" +__version__ = "1.2.2"