Skip to content

Commit

Permalink
Noted changes in the CHANGELOG and updated version numbers, increment…
Browse files Browse the repository at this point in the history
…ing the minor number so that version is now 0.2.1.
  • Loading branch information
blakeaw committed Oct 17, 2023
1 parent 3118683 commit 3002cf0
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 9 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,11 @@ 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.2.1] - 2023-10-17

### Fixed
- Updated the mechanism for the `dose_absorbed` dosing macro function to use a precursor; Fix for Issue https://github.com/blakeaw/pysb-pkpd/issues/4

## [0.2.0] - 2023-05-23

### Added
Expand Down
16 changes: 8 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@
![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.2.0-orange.svg)
[![release](https://img.shields.io/github/release-pre/blakeaw/pysb-pkpd.svg)](https://github.com/blakeaw/pysb-pkpd/releases/tag/v0.2.0)
![version](https://img.shields.io/badge/version-0.2.1-orange.svg)
[![release](https://img.shields.io/github/release-pre/blakeaw/pysb-pkpd.svg)](https://github.com/blakeaw/pysb-pkpd/releases/tag/v0.2.1)

`pysb-pkpd` is an add-on for the [PySB](https://pysb.org/) modeling framework that provides domain-specific macros and pre-constructed models for empirical and mechanistic PK/PD modeling. `pysb-pkpd` could also be used in conjuction with core PySB features to help build and execute quantitative systems pharmacology/toxicology (QSP/QST) models.
`pysb-pkpd` is an add-on for the [PySB](https://pysb.org/) modeling framework that provides domain-specific macros and pre-constructed models for compartmental and mechanistic PK/PD modeling. `pysb-pkpd` could also be used in conjuction with core PySB features to help build and execute quantitative systems pharmacology/toxicology (QSP/QST) models.

## Table of Contents

Expand Down Expand Up @@ -43,27 +43,27 @@ Note that `pysb-pkpd` has the following core dependencies:

### pip install

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

##### with git installed:

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

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

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

setuptools.setup(
name="pysb-pkpd",
version="0.2.0",
version="0.2.1",
python_requires=">=3.8",
install_requires=["pysb>=1.15.0"],
extras_require={"cython": "cython>=0.29.25"},
Expand Down

0 comments on commit 3002cf0

Please sign in to comment.