From 6b73ad3cadfbdc0b80d851fab4e7042d33b6ad6f Mon Sep 17 00:00:00 2001 From: Jack Lovell Date: Tue, 27 Aug 2024 17:52:16 +0100 Subject: [PATCH] Update for compatibility with Cherab core 1.5. --- pyproject.toml | 2 +- requirements.txt | 6 +++--- setup.py | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 5444a93..3d17489 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,3 +1,3 @@ [build-system] -requires = ["setuptools", "wheel", "oldest-supported-numpy", "cython==3.0a5", "raysect==0.7.1", "cherab==1.4"] +requires = ["setuptools", "oldest-supported-numpy", "cython~=3.0", "raysect==0.8.1.*", "cherab==1.5.*"] build-backend="setuptools.build_meta" diff --git a/requirements.txt b/requirements.txt index 329c5ae..27e2c31 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,3 +1,3 @@ -cherab==1.4.0 -raysect==0.7.1 -cython==3.0a5 +cherab==1.5.* +raysect==0.8.1.* +cython~=3.0 diff --git a/setup.py b/setup.py index d633bec..731607a 100644 --- a/setup.py +++ b/setup.py @@ -39,7 +39,7 @@ setup( name="cherab-solps", - version="1.2.1", + version="1.3.0.dev1", license="EUPL 1.1", namespace_packages=['cherab'], description="Cherab spectroscopy framework: SOLPS submodule", @@ -63,6 +63,6 @@ long_description_content_type="text/markdown", packages=find_packages(), include_package_data=True, - install_requires=["raysect==0.7.1", "cherab==1.4"], + install_requires=["raysect==0.8.1.*", "cherab==1.5.*"], ext_modules=cythonize(extensions, force=force, compiler_directives=cython_directives), )