Skip to content

Commit

Permalink
Merge branch 'release_0.5.1'
Browse files Browse the repository at this point in the history
  • Loading branch information
1fish2 committed Apr 9, 2023
2 parents 573aedd + 38c63dc commit fdf3db7
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@ state vector and set of reaction rates and then run it for a given time interval
```python
# This gives the initial state of the system (counts of each molecular species,
# for instance).
import numpy as np
state = np.array([1000, 1000, 0, 0])

# We also specify how long we want the simulation to run. Here we set it to one
Expand Down Expand Up @@ -114,6 +115,10 @@ More examples:

## Changelog

### Version 0.5.2

* Update to Cython 0.29.34. (Cython 3.0.0 is now in beta.)

### Version 0.5.1

* Update to Cython 3.0.0a11 for compatibility with Python 3.11.
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
pip
setuptools

Cython>=3.0.0a11
Cython>=0.29.34
numpy
pytest
psutil
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@

setup(
name='stochastic-arrow',
version='0.5.1',
version='0.5.2',
packages=['arrow'],
author='Ryan Spangler, John Mason, Jerry Morrison, Chris Skalnik, Travis Ahn-Horst',
author_email='[email protected]',
Expand Down

0 comments on commit fdf3db7

Please sign in to comment.