Skip to content

Commit 7081a8a

Browse files
authored
Merge pull request #86 from DHI/support_for_python_3_13
Support for python 3 13
2 parents 5151b73 + 911597d commit 7081a8a

File tree

7 files changed

+12
-6
lines changed

7 files changed

+12
-6
lines changed

.github/workflows/full_test.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
strategy:
1515
fail-fast: false
1616
matrix:
17-
python-version: ["3.9", "3.12"]
17+
python-version: ["3.9", "3.13"]
1818

1919
steps:
2020
- uses: actions/checkout@v4

CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,11 @@
22

33
## [Unreleased]
44

5+
## [2025.0.2] - 2025-02-18
6+
7+
### Added
8+
- Support for Python 3.13
9+
510
## [2025.0.1] - 2025-02-12
611

712
### Added

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ MIKE+Py is a python interface for MIKE+. Its main features include:
1919
2020
## Requirements
2121
* MIKE+ 2024 (or greater) with valid license
22-
* Python x64 3.9 to 3.12
22+
* Python x64 3.9 to 3.13
2323
* Windows
2424

2525
## Installation

docs/index.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ MIKE+Py is a python interface for MIKE+. Its main features include:
1414
1515
## Requirements
1616
* MIKE+ 2024 (or greater) with valid license
17-
* Python x64 3.8 to 3.12
17+
* Python x64 3.9 to 3.13
1818
* Windows operating system
1919

2020
## Installation

mikeplus/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
__version__ = "2025.0.1"
1+
__version__ = "2025.0.2"
22

33
from .conflicts import check_conflicts
44

pyproject.toml

+2-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ exclude = ["notebooks", "tests"]
77

88
[project]
99
name = "mikeplus"
10-
version = "2025.0.1"
10+
version = "2025.0.2"
1111
dependencies = [
1212
"numpy",
1313
'pythonnet>=3.0',
@@ -31,6 +31,7 @@ classifiers = [
3131
"Programming Language :: Python :: 3.10",
3232
"Programming Language :: Python :: 3.11",
3333
"Programming Language :: Python :: 3.12",
34+
"Programming Language :: Python :: 3.13",
3435
"Topic :: Scientific/Engineering",
3536
]
3637

tests/test_engine.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -78,4 +78,4 @@ def test_flood_engine():
7878
data_access.close_database()
7979
assert result_files is not None
8080
for file in result_files:
81-
assert os.path.exists(result_files)
81+
assert os.path.exists(file)

0 commit comments

Comments
 (0)