diff --git a/README.md b/README.md index af87591..966d3d9 100644 --- a/README.md +++ b/README.md @@ -62,7 +62,7 @@ Does other simulation software exist in Python? Sure, but most of them hold your > Fixed minor bugs encountered when using pySODM for a dynamic input-output model of the Belgian economy. Published to pyPI. - Version 0.2.4 (2023-12-04, PR #62) > Validated the use of Python 3.11. Efficiency gains in simulation of jump processes. Ommitted dependency on Numba. All changes related to publishing our software manuscript in Journal of Computational Science. Improved nomenclature in model defenition. - - IN PROGRESS: 0.2.5 + - Version 0.2.5 (2024-10-08, PR #106) > Validated the use of Python 3.12. Validated pySODM on macOS Sonoma 14.5. 'draw functions' only have 'parameters' as mandatory input, followed by an arbitrary number of additional parameters (PR #75). Tutorial environment can now be found in `tutorial_env.yml` and was renamed `PYSODM-TUTORIALS` (PR #76). Users can choose when the simulation starts when calibrating a model (PR #92). Initial model states can now be a function returning a dictionary of states. This initial condition function can have arguments, which become part of the model's parameters, and can therefore be optimised (PR #99). Deprecation of legacy 'warmup' parameter (PR #100). Change 'states' --> 'initial_states' as input needed to initialize a model (PR #102). - Version 0.1 (2022-12-23, PR #14) > Application pySODM to three use cases. Documentation website. Unit tests for ODE, JumpProcess and calibration. diff --git a/setup.py b/setup.py index 5206215..00c1944 100644 --- a/setup.py +++ b/setup.py @@ -4,10 +4,10 @@ name='pySODM', packages=find_packages("src", exclude=["*.tests"]), package_dir={'': 'src'}, - version='0.2.4', + version='0.2.5', description='Simulating and Optimising Dynamical Models', - author='Tijs Alleman, KERMIT, Ghent University', - author_email='tijs.alleman@ugent.be', + author='Tijs Alleman (Ghent University, Johns Hopkins Bloomberg School of Public Health)', + author_email='tijs.alleman@ugent.be, tallema2@jh.edu', keywords='ODE PDE simulation calibration gillespie xarray emcee', url='https://github.com/twallema/pySODM', long_description=open('README.md').read(),