From 59d18864d2a079258671b3a2a344743b61886240 Mon Sep 17 00:00:00 2001 From: vsnever Date: Fri, 30 Aug 2024 14:13:40 +0200 Subject: [PATCH] Remove reference to pre-release Cython from README and update building from source instructions. --- README.md | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/README.md b/README.md index 002496d..ef09fb3 100644 --- a/README.md +++ b/README.md @@ -35,17 +35,13 @@ pip install cherab-solps This module depends on the core Cherab framework. Cherab core, and all of its dependencies, are available on PyPI and can be installed using `pip`. -Note also that a [bug](https://github.com/cython/cython/issues/2918) in Cython prevents Cherab submodules from installing correctly. -This bug is fixed, but not yet released in the stable version of Cython. -As a result, you will need to install a pre-release version of Cython before installing this package. Recent versions of `pip` which support [PEP 518](https://www.python.org/dev/peps/pep-0518/) will handle this automatically when you run `pip install cherab-solps` and a binary wheel is not available for your platform or Python version. For older versions of `pip` you may need to manually install the build-time dependencies. First, clone this repository, then do: ```bash -pip install -U cython==3.0a5 -pip install cherab +pip install -r /requirements.txt pip install ```