From 45d70f7cbedfdaf5a27c086fe632e57eb5512526 Mon Sep 17 00:00:00 2001 From: dh00601 <dh00601@surrey.ac.uk> Date: Thu, 30 Dec 2021 10:30:42 +0000 Subject: [PATCH] adding changelog stuff --- CHANGELOG | 14 +++++++++----- badges/test_coverage.svg | 4 ++-- binarycpython/tests/test_grid.py | 1 + 3 files changed, 12 insertions(+), 7 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index b0ba123c2..754661993 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -30,8 +30,12 @@ https://keepachangelog.com/en/0.3.0/ - some new functions to parse recursively dict keys and/or values that are faster than David's, but probably not as flexible. When these are all you need, they're more efficient. - added a few new Jupyter notebooks -feature/HPC: -- added Slurm support -- Fixed JSON load(s) to not convert to ASCII hence preserve UTF-8 and hopefully be faster. -- Made sure file loads/saves use UTF-8 -- Fixed version dict to include units section and cleaned up a few other unit handlers +* 0.9.3: +- Changed the python version requirement to be 3.9+ +- Restructured the population grid object by splitting off functions that belong in the same category and storing them in a mixin-class within the population_extensions/ dir. +- merged the HPC branch: + - added Condor support + - added Slurm support + - Fixed JSON load(s) to not convert to ASCII hence preserve UTF-8 and hopefully be faster. + - Made sure file loads/saves use UTF-8 + - Fixed version dict to include units section and cleaned up a few other unit handlers diff --git a/badges/test_coverage.svg b/badges/test_coverage.svg index f86374a02..636889bb0 100644 --- a/badges/test_coverage.svg +++ b/badges/test_coverage.svg @@ -15,7 +15,7 @@ <g fill="#fff" text-anchor="middle" font-family="DejaVu Sans,Verdana,Geneva,sans-serif" font-size="11"> <text x="31.5" y="15" fill="#010101" fill-opacity=".3">coverage</text> <text x="31.5" y="14">coverage</text> - <text x="80" y="15" fill="#010101" fill-opacity=".3">43%</text> - <text x="80" y="14">43%</text> + <text x="80" y="15" fill="#010101" fill-opacity=".3">44%</text> + <text x="80" y="14">44%</text> </g> </svg> diff --git a/binarycpython/tests/test_grid.py b/binarycpython/tests/test_grid.py index f836d0b74..6d2469bbc 100644 --- a/binarycpython/tests/test_grid.py +++ b/binarycpython/tests/test_grid.py @@ -24,6 +24,7 @@ TODO: _check_binary_c_error TODO: Before running the non-unit tests to cover functions like evolve, we need to run the unit tests """ +import os import sys import unittest -- GitLab