Skip to content

Commit 15d5fd4

Browse files
authored
Merge branch 'main' into datastructure-artist-fixes
2 parents 93493cc + 96ecee2 commit 15d5fd4

File tree

10 files changed

+43
-736
lines changed

10 files changed

+43
-736
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1919
* Added `vertices_where`, `vertices_where_predicate`, `edges_where`, `edges_where_predicate` to `compas.datastructures.HalfFace`.
2020
* Added `faces_where`, `faces_where_predicate`, `cells_where`, `cells_where_predicate` to `compas.datastructures.HalfFace`.
2121
* Added `VolMeshArtist` to registered Blender artists.
22+
* Added `3.1` to supported versions for Blender installer.
2223

2324
### Changed
2425

@@ -34,13 +35,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
3435
* Changed `compas_ghpython.artists.MeshArtist.draw_vertexlabels` to use the colors of the vertex color dict.
3536
* Changed `compas_ghpython.artists.MeshArtist.draw_edgelabels` to use the colors of the edge color dict.
3637
* Changed `compas_ghpython.artists.MeshArtist.draw_facelabels` to use the colors of the face color dict.
38+
* Fixed `compas_blender.uninstall`.
39+
* Changed `planarity` to optional requirement on all platforms.
40+
* Changed `numba` to optional requirement on all platforms.
3741
* Changed raw github content path for `compas.get`.
3842
* Fixed `compas_blender.artists.VolMeshArtist.draw` and `compas_blender.artists.VolMeshArtist.draw_cells`.
3943
* Fixed `compas_ghpython.artists.VolMeshArtist.draw` and `compas_ghpython.artists.VolMeshArtist.draw_cells`.
4044
* Fixed `compas_rhino.artists.VolMeshArtist.draw` and `compas_rhino.artists.VolMeshArtist.draw_cells`.
4145

4246
### Removed
4347

48+
* Removed `compas.numerical.drx`.
49+
4450

4551
## [1.14.1] 2022-02-16
4652

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ def patched_m2r2_setup(app):
7474
"sphinx.ext.graphviz",
7575
"matplotlib.sphinxext.plot_directive",
7676
"m2r2",
77-
"nbsphinx",
77+
# "nbsphinx",
7878
"sphinx.ext.autodoc.typehints",
7979
"tabs"
8080
]

requirements.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,10 @@ matplotlib >= 2.2, < 3.1; python_version >= '3.5' and python_version <= '3.7' an
1010
matplotlib >= 3.1; python_version >= '3.8' and sys_platform == 'win32'
1111
matplotlib >= 2.2; python_version >= '3.5' and sys_platform != 'win32'
1212
networkx
13-
numba
13+
# numba
1414
numpy >= 1.15.4
1515
pillow
16-
planarity ; sys_platform != 'win32'
16+
# planarity ; sys_platform != 'win32'
1717
pycollada
1818
schema
1919
scipy >= 1.1

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,7 @@ def read(*names, **kwargs):
6767
python_requires='>=2.7',
6868
extras_require={
6969
'planarity': ['planarity'],
70+
'numba': ['numba']
7071
},
7172
entry_points={
7273
'console_scripts': [

src/compas/numerical/drx/__init__.py

Lines changed: 0 additions & 14 deletions
This file was deleted.

0 commit comments

Comments
 (0)