Skip to content

Commit fdf3db7

Browse files
committed
Merge branch 'release_0.5.1'
2 parents 573aedd + 38c63dc commit fdf3db7

File tree

3 files changed

+7
-2
lines changed

3 files changed

+7
-2
lines changed

README.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,7 @@ state vector and set of reaction rates and then run it for a given time interval
5050
```python
5151
# This gives the initial state of the system (counts of each molecular species,
5252
# for instance).
53+
import numpy as np
5354
state = np.array([1000, 1000, 0, 0])
5455

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

115116
## Changelog
116117

118+
### Version 0.5.2
119+
120+
* Update to Cython 0.29.34. (Cython 3.0.0 is now in beta.)
121+
117122
### Version 0.5.1
118123

119124
* Update to Cython 3.0.0a11 for compatibility with Python 3.11.

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
pip
44
setuptools
55

6-
Cython>=3.0.0a11
6+
Cython>=0.29.34
77
numpy
88
pytest
99
psutil

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@
4646

4747
setup(
4848
name='stochastic-arrow',
49-
version='0.5.1',
49+
version='0.5.2',
5050
packages=['arrow'],
5151
author='Ryan Spangler, John Mason, Jerry Morrison, Chris Skalnik, Travis Ahn-Horst',
5252
author_email='[email protected]',

0 commit comments

Comments
 (0)