diff --git a/.github/workflows/python-package.yml b/.github/workflows/python-package.yml index 5d54622..c415dd2 100644 --- a/.github/workflows/python-package.yml +++ b/.github/workflows/python-package.yml @@ -8,6 +8,8 @@ on: branches: [ main ] pull_request: branches: [ main ] + schedule: + - cron: '0 2 * * *' # Runs at 2:00 AM UTC every day jobs: build: @@ -20,7 +22,7 @@ jobs: strategy: fail-fast: false matrix: - python-version: ["3.9", "3.10", "3.11"] + python-version: ["3.9", "3.10", "3.11", "3.12", "3.13", "3.14"] os: [macOS, ubuntu, Windows] steps: diff --git a/pysp2/__init__.py b/pysp2/__init__.py index 9bb72be..c3cd5a5 100644 --- a/pysp2/__init__.py +++ b/pysp2/__init__.py @@ -10,4 +10,4 @@ from . import testing -__version__ = "1.6.0" +__version__ = "1.7.0" diff --git a/setup.py b/setup.py index 8f7e16c..04eec4c 100644 --- a/setup.py +++ b/setup.py @@ -40,7 +40,7 @@ LICENSE = 'BSD' PLATFORMS = "Linux, Windows, OSX" MAJOR = 1 -MINOR = 6 +MINOR = 7 MICRO = 0 #SCRIPTS = glob.glob('scripts/*')