From 1838a96cbe51bf27f708201739397361ede21508 Mon Sep 17 00:00:00 2001 From: zstanecic Date: Mon, 23 Oct 2023 13:23:36 +0400 Subject: [PATCH 1/2] updated world submodule to the latest reference --- lib/World | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/World b/lib/World index 13d96fc..f8dd5fb 160000 --- a/lib/World +++ b/lib/World @@ -1 +1 @@ -Subproject commit 13d96fc7da25da5fb808844d88337317e9fa0d76 +Subproject commit f8dd5fb289db6a7f7f704497752bf32b258f9151 From 5a4fc0f8af3795f57c4ce4872ccdf3399721c363 Mon Sep 17 00:00:00 2001 From: zstanecic Date: Mon, 23 Oct 2023 13:43:28 +0400 Subject: [PATCH 2/2] bump version number, upgrade dependencies for building --- setup.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/setup.py b/setup.py index d2a8d67..0bc10c8 100644 --- a/setup.py +++ b/setup.py @@ -11,7 +11,7 @@ from setuptools.command.build_ext import build_ext -_VERSION = '0.3.4' +_VERSION = '0.3.5' world_src_top = join("lib", "World", "src") @@ -39,11 +39,11 @@ ], install_requires=[ 'numpy', - 'cython>=0.24', + 'cython>=3.0.2', ], extras_require={ 'test': ['nose'], - 'sdist': ['numpy', 'cython>=0.24'], + 'sdist': ['numpy', 'cython>=3.0.2'], }, author="Pyworld Contributors", author_email="jeremycchsu@gmail.com",