From 38c63dc6118a97e3dfe88da85bd3fb730f3e67ed Mon Sep 17 00:00:00 2001 From: Jerry Morrison <1fish2@users.noreply.github.com> Date: Sun, 9 Apr 2023 16:09:35 -0700 Subject: [PATCH] v0.5.2 using Cython 0.29.34 --- README.md | 5 +++++ requirements.txt | 2 +- setup.py | 2 +- 3 files changed, 7 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 4e11e13..b624e47 100644 --- a/README.md +++ b/README.md @@ -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 @@ -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. diff --git a/requirements.txt b/requirements.txt index 88583f2..0c0af41 100644 --- a/requirements.txt +++ b/requirements.txt @@ -3,7 +3,7 @@ pip setuptools -Cython>=3.0.0a11 +Cython>=0.29.34 numpy pytest psutil diff --git a/setup.py b/setup.py index b5d5e96..f7f548e 100644 --- a/setup.py +++ b/setup.py @@ -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='ryan.spangler@gmail.com',