Skip to content

Commit 31d42fe

Browse files
authored
Merge pull request #342 from wouterpeere/issue341-test-for-python-319
Issue341 test for python 319
2 parents 2049113 + cce26be commit 31d42fe

File tree

5 files changed

+12
-11
lines changed

5 files changed

+12
-11
lines changed

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
runs-on: ubuntu-latest
3131
strategy:
3232
matrix:
33-
python-version: [ '3.9', '3.10', '3.11', '3.12' ]
33+
python-version: [ '3.9', '3.10', '3.11', '3.12', '3.13' ]
3434

3535
steps:
3636
- uses: actions/checkout@v3

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
1414
- Pressure drop calculation for horizontal pipe and total system (issue #332).
1515
- Added optimisation function for balanced borefield (issue #335).
1616
- Min_temperature and Max_temperature property to results class (issue #335).
17+
- Support for Python 3.13 (issue #319).
1718

1819
## Changed
1920

GHEtool/Examples/main_functionalities.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -42,10 +42,6 @@ def main_functionalities():
4242
# create the borefield object
4343
borefield = Borefield(load=load)
4444

45-
# one can activate or deactive the logger, by default it is deactivated
46-
# borefield.activate_logger()
47-
# borefield.deactivate_logger()
48-
4945
borefield.set_ground_parameters(data)
5046
borefield.create_rectangular_borefield(10, 12, 6, 6, 100, 4, 0.075)
5147

README.md

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ our [project board](https://github.com/users/wouterpeere/projects/2) to check ou
6060

6161
## Requirements
6262

63-
This code is tested with Python 3.9, 3.10, 3.11 and 3.12 and requires the following libraries (the versions
63+
This code is tested with Python 3.9, 3.10, 3.11, 3.12 and 3.13 and requires the following libraries (the versions
6464
mentioned are the ones with which the code is tested)
6565

6666
* matplotlib >= 3.5.2
@@ -396,16 +396,19 @@ KU Leuven, Belgium.
396396

397397
Aitmad, M. (2025). Techno-Economic Analysis of using Ground-Source Heat Exchangers in Pakistan (Master thesis).
398398

399-
Jahn, A. (2024). Softwarekonzept zur vereinfachten Wärmeplanung von Städten und Quartieren bei variabler Datenbasis (Master thesis).
399+
Jahn, A. (2024). Softwarekonzept zur vereinfachten Wärmeplanung von Städten und Quartieren bei variabler Datenbasis (
400+
Master thesis).
400401

401402
Meertens, L. (2024). Reducing Capital Cost for Geothermal Heat Pump Systems Through Dynamic Borefield Sizing. _IEA HPT
402403
Magazine 42_(2), https://doi.org/10.23697/9r3w-jm57.
403404

404405
Blanke, T., Born, H., Döring, B. et al. Model for dimensioning borehole heat exchanger applied to
405-
mixed-integer-linear-problem (MILP) energy system optimization. _Geotherm Energy_ 12, 30 (2024). https://doi.org/10.1186/s40517-024-00301-w.
406+
mixed-integer-linear-problem (MILP) energy system optimization. _Geotherm Energy_ 12, 30 (
407+
2024). https://doi.org/10.1186/s40517-024-00301-w.
406408

407409
Dion G., Pasquier, P., Perraudin, D. (2024). Sizing equation based on the outlet fluid temperature of closed-loop ground
408-
heat exchangers. In _Proceedings of International Ground Source Heat Pump Association_. Montréal (Canada), 28-30 May 2024.
410+
heat exchangers. In _Proceedings of International Ground Source Heat Pump Association_. Montréal (Canada), 28-30 May
411+
2024.
409412

410413
Peere, W. (2024). Are Rules of Thumb Misleading? The Complexity of Borefield Sizing and the Importance of Design
411414
Software. _IEA HPT Magazine 42_(1), https://doi.org/10.23697/7nec-0g78.
@@ -421,7 +424,8 @@ residential solar districts with seasonal thermal energy storage: Importance of
421424
engineering_ 226, Art.No. 120203, 10.1016/j.applthermaleng.2023.120203
422425

423426
Cimmino, M., Cook., J. C. (2022). pygfunction 2.2 : New Features and Improvements in Accuracy and Computational
424-
Efficiency. In _Proceedings of IGSHPA Research Track 2022_. Las Vegas (USA), 6-8 December 2022. https://doi.org/10.22488/okstate.22.000015.
427+
Efficiency. In _Proceedings of IGSHPA Research Track 2022_. Las Vegas (USA), 6-8 December
428+
2022. https://doi.org/10.22488/okstate.22.000015.
425429

426430
Verleyen, L., Peere, W., Michiels, E., Boydens, W., Helsen, L. (2022). The beauty of reason and insight: a story about
427431
30 years old borefield equations. _IEA HPT Magazine 40_(3), 36-39, https://doi.org/10.23697/6q4n-3223.

docs/sources/code/getting_started.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
## Requirements
44

5-
This code is tested with Python 3.9, 3.10, 3.11 and 3.12 and requires the following libraries (the versions
5+
This code is tested with Python 3.9, 3.10, 3.11, 3.12 and 3.13 and requires the following libraries (the versions
66
mentioned are the ones with which the code is tested)
77

88
* matplotlib >= 3.5.2

0 commit comments

Comments
 (0)