Skip to content

Commit

Permalink
Merge pull request #1202 from compas-dev/bye-cython
Browse files Browse the repository at this point in the history
Remove cython from requirements
  • Loading branch information
gonzalocasas authored Oct 10, 2023
2 parents 64c435b + c65cc11 commit 0757d64
Show file tree
Hide file tree
Showing 7 changed files with 4 additions and 6 deletions.
1 change: 0 additions & 1 deletion .github/workflows/ironpython.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@ jobs:
- name: "[RPC tests] Install CPython dependencies"
run: |
python -m pip install --upgrade pip
pip install cython --config-settings="--build-option=--no-cython-compile"
- name: "[RPC tests] Install COMPAS on CPython"
run: |
pip install --no-cache-dir .
Expand Down
2 changes: 1 addition & 1 deletion .gitpod.yml
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
tasks:
- init: pip3 install cython --install-option="--no-cython-compile" && pip3 install .
- init: pip3 install .
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
* Fixed argument order at `compas.geometry.cone.circle`.
* Pinned `jsonschema` version to >=4.17, <4.18 to avoid Rust toolchain
* Fixed `box_to_compas` in `compas_rhino.conversions` to correctly take in the center of the box as the center point of the frame.
* Removed `cython` from requirements.

### Removed

Expand Down
2 changes: 1 addition & 1 deletion docs/devguide/workflow.rst
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ To set up a developer environment

.. code-block:: bash
conda create -n compas-dev python=3.8 cython --yes
conda create -n compas-dev python=3.11 --yes
conda activate compas-dev
3. Install development dependencies:
Expand Down
2 changes: 1 addition & 1 deletion docs/userguide/configuration/blender.rst
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ Alternatively, you can create a new environment and simply install entire COMPAS

.. code-block:: bash
conda create -n blender python=3.9 cython --yes
conda create -n blender python=3.9 --yes
conda activate blender
pip install compas
python -m compas_blender.install
Expand Down
1 change: 0 additions & 1 deletion docs/userguide/installation.rst
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,6 @@ Install COMPAS using ``pip`` from the Python Package Index.

.. code-block:: bash
pip install cython --install-option="--no-cython-compile"
pip install compas
Install an editable version from local source.
Expand Down
1 change: 0 additions & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
# flake8: noqa
cython
imageio <= 2.6; python_version < '3.5'
imageio >= 2.7; python_version >= '3.5'
jsonschema >= 4.17, < 4.18
Expand Down

0 comments on commit 0757d64

Please sign in to comment.