diff --git a/.github/workflows/merge_PR.yml b/.github/workflows/merge_PR.yml new file mode 100644 index 0000000..9c3f360 --- /dev/null +++ b/.github/workflows/merge_PR.yml @@ -0,0 +1,17 @@ +name: Pull Request Merged +on: + pull_request: + types: [closed] + +jobs: + autoupdate_minor: + if: github.event.pull_request.merged == true + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - uses: actions/setup-python@v5 + with: + python-version: '3.12' + - name: Install dependencies + run: | + python -c "import eos; print(eos.__version__)" diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index dd1f9be..f55c42e 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -28,7 +28,7 @@ jobs: strategy: matrix: python-version: ['3.8', '3.9', '3.10', '3.11', '3.12'] - fail-fast: false + fail-fast: true steps: - name: Checkout LFS objects diff --git a/eos/__init__.py b/eos/__init__.py index 730ba1d..6cd02b8 100644 --- a/eos/__init__.py +++ b/eos/__init__.py @@ -2,5 +2,5 @@ Package to handle data redction at AMOR instrument to be used by __main__.py script. """ -__version__ = '3.2.3-2' +__version__ = '3.2.4' __date__ = '2026-02-27'