Skip to content

Commit 673b263

Browse files
authored
Merge pull request #85 from OpenWaterAnalytics/dev
update 2.3.3.0
2 parents c1cb2fd + 279b0d1 commit 673b263

File tree

140 files changed

+17292
-55103
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

140 files changed

+17292
-55103
lines changed

.github/workflows/build_tests.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,16 @@
11
name: build
22

3-
on: [push]
3+
on:
4+
push:
5+
workflow_dispatch:
46

57
jobs:
68
build:
79
runs-on: ${{ matrix.os }}
810
strategy:
911
matrix:
1012
os: [ubuntu-latest, macos-latest, windows-latest]
11-
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
13+
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13", "3.14"]
1214
steps:
1315
- uses: actions/checkout@v4
1416

README.md

Lines changed: 807 additions & 134 deletions
Large diffs are not rendered by default.

epyt/__init__.py

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,17 @@
11
# -*- coding: utf-8 -*-
22
__author__ = """Marios S. Kyriakou"""
33
__email__ = "[email protected]"
4-
__version__ = "1.2.3"
4+
__version__ = "2.3.3.0"
55
__msxversion__ = "200000"
6-
__lastupdate__ = "25/06/2025"
6+
__lastupdate__ = "04/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-
from epyt.epanet import epanet
11+
try:
12+
from importlib.resources import files # Python 3.9+
13+
except ImportError:
14+
from importlib_resources import files # Backport for < 3.9
15+
epyt_root = str(files("epyt"))
16+
17+
from epyt.epanet import epanet

0 commit comments

Comments
 (0)