Skip to content

Commit 639b167

Browse files
authored
Merge pull request ARM-DOE#73 from rcjackson/v170
VER: 1.7.0 + CI to Python 3.14
2 parents 38498aa + d24032f commit 639b167

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

.github/workflows/python-package.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@ on:
88
branches: [ main ]
99
pull_request:
1010
branches: [ main ]
11+
schedule:
12+
- cron: '0 2 * * *' # Runs at 2:00 AM UTC every day
1113

1214
jobs:
1315
build:
@@ -20,7 +22,7 @@ jobs:
2022
strategy:
2123
fail-fast: false
2224
matrix:
23-
python-version: ["3.9", "3.10", "3.11"]
25+
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13", "3.14"]
2426
os: [macOS, ubuntu, Windows]
2527

2628
steps:

pysp2/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,4 @@
1010
from . import testing
1111

1212

13-
__version__ = "1.6.0"
13+
__version__ = "1.7.0"

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
LICENSE = 'BSD'
4141
PLATFORMS = "Linux, Windows, OSX"
4242
MAJOR = 1
43-
MINOR = 6
43+
MINOR = 7
4444
MICRO = 0
4545

4646
#SCRIPTS = glob.glob('scripts/*')

0 commit comments

Comments
 (0)