Skip to content

Commit cb6d7f5

Browse files
committed
Merge branch 'dev'
2 parents 673b263 + 18979e2 commit cb6d7f5

9 files changed

Lines changed: 178 additions & 675 deletions

File tree

README.md

Lines changed: 172 additions & 665 deletions
Large diffs are not rendered by default.

epyt/__init__.py

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,13 @@
11
# -*- coding: utf-8 -*-
22
__author__ = """Marios S. Kyriakou"""
33
__email__ = "kiriakou.marios@ucy.ac.cy"
4-
__version__ = "2.3.3.0"
4+
__version__ = "2.3.4.0"
55
__msxversion__ = "200000"
6-
__lastupdate__ = "04/02/2026"
6+
__lastupdate__ = "10/02/2026"
77
__copyright__ = """Copyright 2022, KIOS Research and Innovation Center of Excellence (KIOS CoE),
88
University of Cyprus (www.kios.org.cy)."""
99
__license__ = "EUPL License, Version 1.2"
1010

11-
try:
12-
from importlib.resources import files # Python 3.9+
13-
except ImportError:
14-
from importlib_resources import files # Backport for < 3.9
11+
from importlib.resources import files # Python 3.9+
1512
epyt_root = str(files("epyt"))
16-
1713
from epyt.epanet import epanet

epyt/libraries/glnx/libepanet2

0 Bytes
Binary file not shown.

epyt/libraries/glnx/libepanet2.so

0 Bytes
Binary file not shown.
0 Bytes
Binary file not shown.

epyt/libraries/win/epanet2.dll

0 Bytes
Binary file not shown.

epyt/libraries/win/epanet2.exe

0 Bytes
Binary file not shown.

requirements.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
cffi>=2.0.0
2-
numpy>=1.24.4
3-
matplotlib>=3.7.5
2+
numpy>=2.0.2
3+
matplotlib>=3.8
44
pandas>=2.0.3
55
XlsxWriter>=3.2.0
66
setuptools

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,6 @@ def read_version_from_init(file_path="epyt/__init__.py"):
6868
],
6969
python_requires=">=3.9",
7070
package_data={f'{module_name}': data},
71-
install_requires=['cffi>=2.0.0', 'numpy>=1.24.4', 'matplotlib>=3.7.5', 'pandas>=2.0.3', 'XlsxWriter>=3.2.0', 'setuptools'],
71+
install_requires=['cffi>=2.0.0', 'numpy>=2.0.2', 'matplotlib>=3.8', 'pandas>=2.0.3', 'XlsxWriter>=3.2.0', 'setuptools'],
7272
include_package_data=True
7373
)

0 commit comments

Comments
 (0)