From a24dcc3662ec9cea3fe77b031b6835056d07ebf7 Mon Sep 17 00:00:00 2001 From: Tim Bishop Date: Sun, 24 Dec 2023 15:08:00 +0000 Subject: [PATCH] Update pystatgrab to 0.7.2. This doesn't change the original code, but does change the released tarball by using a newer version of Cython to generate statgrab.c. This fixes the build on Python 3.11. Fixes #8. --- NEWS | 4 ++++ setup.py | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/NEWS b/NEWS index 9a21ae2..e2c950b 100644 --- a/NEWS +++ b/NEWS @@ -1,6 +1,10 @@ pystatgrab NEWS https://libstatgrab.org/pystatgrab/ +pystatgrab 0.7.2 (24 Decemberr 2023) + + * Re-generate with more recent Cython. Fixes build on Python 3.11. + pystatgrab 0.7.1 (16 August 2020) * Re-generate with more recent Cython. Fixes build on Python 3.7. diff --git a/setup.py b/setup.py index dd93342..e140a89 100755 --- a/setup.py +++ b/setup.py @@ -34,7 +34,7 @@ import os # version of pystatgrab -VERSION = "0.7.1" +VERSION = "0.7.2" # required version of libstatgrab LIBSTATGRAB = "0.91"