Skip to content

Commit

Permalink
Upgraded the version number from 0.3.2 to 0.3.3 - bug fix.
Browse files Browse the repository at this point in the history
  • Loading branch information
blakeaw committed Jul 21, 2024
1 parent 24f53e7 commit 81a193e
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 11 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,12 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/)
and this project adheres to [Semantic Versioning](http://semver.org/).

## [0.3.3] - 2024-07-21

### Fixed

- Fix for Issue https://github.com/blakeaw/pysb-pkpd/issues/20

## [0.3.2] - 2024-07-18

### Fixed
Expand Down
4 changes: 2 additions & 2 deletions CITATION.cff
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@ abstract: >-
PySB add-on providing domain-specific macros and models
for empirical and mechanistic PK/PD modeling.
license: BSD-2-Clause
version: 0.3.2
version: 0.3.3
doi: 10.5281/zenodo.12775536
date-released: '2024-07-18'
date-released: '2024-07-21'
references:
- authors:
- family-names: Lopez
Expand Down
14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
![Python version badge](https://img.shields.io/badge/python-3.11.3-blue.svg)
[![PySB version badge](https://img.shields.io/badge/PySB->%3D1.15.0-9cf.svg)](https://pysb.org/)
[![license](https://img.shields.io/github/license/blakeaw/pysb-pkpd.svg)](LICENSE)
![version](https://img.shields.io/badge/version-0.3.2-orange.svg)
[![release](https://img.shields.io/github/release-pre/blakeaw/pysb-pkpd.svg)](https://github.com/blakeaw/pysb-pkpd/releases/tag/v0.3.2)
![version](https://img.shields.io/badge/version-0.3.3-orange.svg)
[![release](https://img.shields.io/github/release-pre/blakeaw/pysb-pkpd.svg)](https://github.com/blakeaw/pysb-pkpd/releases/tag/v0.3.3)
[![DOI](https://zenodo.org/badge/DOI/10.5281/zenodo.12775536.svg)](https://doi.org/10.5281/zenodo.12775536)

__`pysb-pkpd` enables you to efficiently program and simulate dynamic PK/PD and QSP models in Python using the PySB modeling framework.__
Expand Down Expand Up @@ -56,27 +56,27 @@ Note that `pysb-pkpd` has the following core dependencies:

### pip install

You can install `pysb-pkpd` version 0.3.2 with `pip` sourced from the GitHub repo:
You can install `pysb-pkpd` version 0.3.3 with `pip` sourced from the GitHub repo:

##### with git installed:

Fresh install:
```
pip install git+https://github.com/blakeaw/[email protected].2
pip install git+https://github.com/blakeaw/[email protected].3
```
Or to upgrade from an older version:
```
pip install --upgrade git+https://github.com/blakeaw/[email protected].2
pip install --upgrade git+https://github.com/blakeaw/[email protected].3
```
##### without git installed:

Fresh install:
```
pip install https://github.com/blakeaw/pysb-pkpd/archive/refs/tags/v0.3.2.zip
pip install https://github.com/blakeaw/pysb-pkpd/archive/refs/tags/v0.3.3.zip
```
Or to upgrade from an older version:
```
pip install --upgrade https://github.com/blakeaw/pysb-pkpd/archive/refs/tags/v0.3.2.zip
pip install --upgrade https://github.com/blakeaw/pysb-pkpd/archive/refs/tags/v0.3.3.zip
```
### Manual install

Expand Down
2 changes: 1 addition & 1 deletion src/pysb/pkpd/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@
from .macros import *
from .util import simulate

__version__ = '0.3.2'
__version__ = '0.3.3'
2 changes: 1 addition & 1 deletion src/pysb/pkpd/util.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ def simulate(
tspan=tspan,
integrator="lsoda",
)
simulation_result = simulation.run(
simulation_result = simulator.run(
param_values=param_values, initials=initials, num_processors=nprocs
)
simulation_trajectory = simulation_result.all
Expand Down

0 comments on commit 81a193e

Please sign in to comment.