diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index d7193d7..0b6ef7b 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -4,10 +4,12 @@ on: push: pull_request: types: [opened, synchronize] + schedule: + - cron: "5 5 * * 5" # test every friday @ 0505 jobs: build: - runs-on: ubuntu-20.04 + runs-on: ubuntu-latest strategy: matrix: python-version: ["3.7", "3.9", "3.12"] diff --git a/sigmf/__init__.py b/sigmf/__init__.py index 103a993..e5138a8 100644 --- a/sigmf/__init__.py +++ b/sigmf/__init__.py @@ -5,7 +5,7 @@ # SPDX-License-Identifier: LGPL-3.0-or-later # version of this python module -__version__ = "1.2.2" +__version__ = "1.2.3" # matching version of the SigMF specification __specification__ = "1.2.0"