Skip to content

Commit 961b9b9

Browse files
committed
README.md: Remove misleading instructions to compile extension modules
1 parent c26de6d commit 961b9b9

File tree

1 file changed

+2
-5
lines changed

1 file changed

+2
-5
lines changed

README.md

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -60,17 +60,14 @@ The above command creates a repository sage-euler-product with the source code,
6060

6161
Do not forget the . that refers to the current directory.
6262

63-
When you don't want to install the package or you are testing some modifications to the source code, a more convenient way of using **sage-euler-prodct** is to do everything locally. To do so, you need to compile the module in place via:
64-
65-
$ PYTHON setup.py build_ext --inplace
66-
63+
When you don't want to install the package or you are testing some modifications to the source code, a more convenient way of using **sage-euler-prodct** is to do everything locally.
6764
Once done, you can import the sage-euler-product module. To check that you are actually using the right module (i.e. the local one) you can do in a SageMath session:
6865

6966
sage: import euler_product
7067
sage: euler_product.__path__ # random
7168
['/home/you/sage-euler-product/euler_product/']
7269

73-
The result of the command must correspond to the path of the repository created by the command git clone given above. The compilation step PYTHON setup.py build_ext has to be redone each time you modify a C or Cython source file (i.e. with .c, .h, .pxd or .pyx extension). In other words, it is not needed if you only modify or create Python files (i.e. .py files).
70+
The result of the command must correspond to the path of the repository created by the command git clone given above.
7471

7572
If you wish to install your custom version of sage-euler-product just use PIP as indicated before.
7673

0 commit comments

Comments
 (0)