Skip to content

Commit a98e554

Browse files
authored
Permit python 314 (#200)
* allowing python314 * acting on review comments- incrementing version number, adding to changelog, adding py314 to test suite
1 parent a060e55 commit a98e554

File tree

4 files changed

+10
-5
lines changed

4 files changed

+10
-5
lines changed

.github/workflows/tests.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,15 +12,15 @@ jobs:
1212
max-parallel: 3
1313
matrix:
1414
os: [ubuntu-latest, macos-latest, windows-latest]
15-
python-version: ['3.10', '3.11', '3.12', '3.13']
15+
python-version: ['3.10', '3.11', '3.12', '3.13', '3.14']
1616
exclude:
1717
- os: macos-latest
1818
python-version: '3.10'
1919

2020
steps:
21-
- uses: actions/checkout@v4
21+
- uses: actions/checkout@v5
2222
- name: Set up Python ${{ matrix.python-version }}
23-
uses: actions/setup-python@v4
23+
uses: actions/setup-python@v6
2424
with:
2525
python-version: ${{ matrix.python-version }}
2626
- name: Install dependencies

ORBIT/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,4 +17,4 @@
1717
from ORBIT.parametric import ParametricManager
1818
from ORBIT.supply_chain import SupplyChainManager
1919

20-
__version__ = "1.2.3"
20+
__version__ = "1.2.4"

docs/source/changelog.rst

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

33
ORBIT Changelog
44
===============
5+
1.2.4
6+
-----
7+
- Support Python 3.14
8+
59
1.2.3
610
-----
711
- Adjusted the recent np.trapz fix to be compatible with numpy < 2.0

pyproject.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ authors = [
1212
]
1313
readme = {file = "README.rst", content-type = "text/x-rst"}
1414
description = "Offshore Renewables Balance of system and Installation Tool"
15-
requires-python = ">3.9, <3.14"
15+
requires-python = ">3.9"
1616
license = {file = "LICENSE"}
1717
dependencies = [
1818
"numpy",
@@ -46,6 +46,7 @@ classifiers = [
4646
"Programming Language :: Python :: 3.11",
4747
"Programming Language :: Python :: 3.12",
4848
"Programming Language :: Python :: 3.13",
49+
"Programming Language :: Python :: 3.14",
4950
"Topic :: Scientific/Engineering",
5051
"Topic :: Software Development :: Libraries :: Python Modules",
5152
]

0 commit comments

Comments
 (0)