Skip to content

Commit 0757d64

Browse files
authored
Merge pull request #1202 from compas-dev/bye-cython
Remove cython from requirements
2 parents 64c435b + c65cc11 commit 0757d64

File tree

7 files changed

+4
-6
lines changed

7 files changed

+4
-6
lines changed

.github/workflows/ironpython.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@ jobs:
2121
- name: "[RPC tests] Install CPython dependencies"
2222
run: |
2323
python -m pip install --upgrade pip
24-
pip install cython --config-settings="--build-option=--no-cython-compile"
2524
- name: "[RPC tests] Install COMPAS on CPython"
2625
run: |
2726
pip install --no-cache-dir .

.gitpod.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
tasks:
2-
- init: pip3 install cython --install-option="--no-cython-compile" && pip3 install .
2+
- init: pip3 install .

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1818
* Fixed argument order at `compas.geometry.cone.circle`.
1919
* Pinned `jsonschema` version to >=4.17, <4.18 to avoid Rust toolchain
2020
* Fixed `box_to_compas` in `compas_rhino.conversions` to correctly take in the center of the box as the center point of the frame.
21+
* Removed `cython` from requirements.
2122

2223
### Removed
2324

docs/devguide/workflow.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ To set up a developer environment
1212

1313
.. code-block:: bash
1414
15-
conda create -n compas-dev python=3.8 cython --yes
15+
conda create -n compas-dev python=3.11 --yes
1616
conda activate compas-dev
1717
1818
3. Install development dependencies:

docs/userguide/configuration/blender.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -177,7 +177,7 @@ Alternatively, you can create a new environment and simply install entire COMPAS
177177

178178
.. code-block:: bash
179179
180-
conda create -n blender python=3.9 cython --yes
180+
conda create -n blender python=3.9 --yes
181181
conda activate blender
182182
pip install compas
183183
python -m compas_blender.install

docs/userguide/installation.rst

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,6 @@ Install COMPAS using ``pip`` from the Python Package Index.
6161

6262
.. code-block:: bash
6363
64-
pip install cython --install-option="--no-cython-compile"
6564
pip install compas
6665
6766
Install an editable version from local source.

requirements.txt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
# flake8: noqa
2-
cython
32
imageio <= 2.6; python_version < '3.5'
43
imageio >= 2.7; python_version >= '3.5'
54
jsonschema >= 4.17, < 4.18

0 commit comments

Comments
 (0)