From bc8569d65640f21f62eb29a695c9bea561b02eab Mon Sep 17 00:00:00 2001 From: Athanaseus Javas Ramaila Date: Tue, 31 Jan 2023 14:59:14 +0200 Subject: [PATCH 1/2] Update test_installation.yml --- .github/workflows/test_installation.yml | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/.github/workflows/test_installation.yml b/.github/workflows/test_installation.yml index 4d5007f..8734f89 100644 --- a/.github/workflows/test_installation.yml +++ b/.github/workflows/test_installation.yml @@ -11,11 +11,14 @@ on: jobs: build: - - runs-on: ubuntu-latest + runs-on: ${{ matrix.os }} strategy: matrix: - python-version: [3.6, 3.7, 3.8] + os: [ ubuntu-20.04, ubuntu-22.04 ] + python-version: ["3.8", "3.9", "3.10"] + include: + - os: ubuntu-20.04 + python-version: 3.6 steps: - uses: actions/checkout@v2 @@ -70,4 +73,4 @@ jobs: - name: Test .lsm to ds9 region file conversion run: | echo "Checking lsm.html to .reg conversion" - tigger-convert $GITHUB_WORKSPACE/test/3C147-HI6.refmodel.lsm.html /tmp/3C147-HI6.refmodel.lsm.reg -f \ No newline at end of file + tigger-convert $GITHUB_WORKSPACE/test/3C147-HI6.refmodel.lsm.html /tmp/3C147-HI6.refmodel.lsm.reg -f From bcf62c9b51cfecad0e2aaa8ffd838ed1e7bdf173 Mon Sep 17 00:00:00 2001 From: Athanaseus Javas Ramaila Date: Tue, 31 Jan 2023 15:21:00 +0200 Subject: [PATCH 2/2] Bump version --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 0a4cc67..9e7eea1 100644 --- a/setup.py +++ b/setup.py @@ -3,7 +3,7 @@ from setuptools import setup, find_packages -__version__ = "1.7.2" +__version__ = "1.7.3" # PyQt 5 has not been added here are. It needs to be installed via apt-get which is a Tigger v1.6.0 requirement. requirements = ['astro_kittens', 'numpy', 'scipy', 'astlib', 'astropy', 'future', 'python-casacore']