Skip to content

Commit

Permalink
Merge pull request #1 from bad-ants-fleet/development
Browse files Browse the repository at this point in the history
Development
  • Loading branch information
bad-ants-fleet committed Nov 13, 2020
2 parents 52163c4 + 8241e9b commit 9f74ec8
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
4 changes: 2 additions & 2 deletions README.md
Expand Up @@ -5,8 +5,8 @@ Simulate Chemical Recation Networks (CRNs) using Ordinary Differential Equations
[![GitHub release (latest by date including pre-releases)](https://img.shields.io/github/v/release/bad-ants-fleet/crnsimulator?include_prereleases)](https://github.com/bad-ants-fleet/crnsimulator/releases)
[![PyPI version](https://badge.fury.io/py/crnsimulator.svg)](https://badge.fury.io/py/crnsimulator)
[![PyPI - License](https://img.shields.io/pypi/l/crnsimulator)](https://opensource.org/licenses/MIT)
[![Build Status](https://travis-ci.com/bad-ants-fleet/crnsimulator.svg?branch=master)](https://travis-ci.com/github/bad-ants-fleet/crnsimulator)
[![Codecov branch](https://img.shields.io/codecov/c/github/bad-ants-fleet/crnsimulator/master)](https://codecov.io/gh/bad-ants-fleet/crnsimulator)
[![Travis (.org)](https://img.shields.io/travis/bad-ants-fleet/crnsimulator)](https://travis-ci.com/github/bad-ants-fleet/crnsimulator)
[![Codecov](https://img.shields.io/codecov/c/github/bad-ants-fleet/crnsimulator)](https://codecov.io/gh/bad-ants-fleet/crnsimulator)

## Examples
### Using the `crnsimulator` executable:
Expand Down
2 changes: 1 addition & 1 deletion crnsimulator/odelib_template.py
Expand Up @@ -90,7 +90,7 @@ def add_integrator_args(parser):
return

def flint(inp):
return int(inp) if float(inp) == int(float(inp)) else float(inp)
return int(float(inp)) if float(inp) == int(float(inp)) else float(inp)

def set_logger(verbose, logfile):
# ~~~~~~~~~~~~~
Expand Down
1 change: 1 addition & 0 deletions setup.py
Expand Up @@ -21,6 +21,7 @@
'Development Status :: 4 - Beta',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Intended Audience :: Science/Research',
],
python_requires = '>=3.7',
Expand Down

0 comments on commit 9f74ec8

Please sign in to comment.