Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 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
* Added `compas.datastructures.VolMesh.from_meshgrid`.
* Added `vertices_where`, `vertices_where_predicate`, `edges_where`, `edges_where_predicate` to `compas.datastructures.HalfFace`.
* Added `faces_where`, `faces_where_predicate`, `cells_where`, `cells_where_predicate` to `compas.datastructures.HalfFace`.
* Added `3.1` to supported versions for Blender installer.

### Changed

Expand All @@ -33,10 +34,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
* Changed `compas_ghpython.artists.MeshArtist.draw_vertexlabels` to use the colors of the vertex color dict.
* Changed `compas_ghpython.artists.MeshArtist.draw_edgelabels` to use the colors of the edge color dict.
* Changed `compas_ghpython.artists.MeshArtist.draw_facelabels` to use the colors of the face color dict.
* Fixed `compas_blender.uninstall`.
* Changed `planarity` to optional requirement on all platforms.
* Changed `numba` to optional requirement on all platforms.
* Changed raw github content path for `compas.get`.

### Removed

* Removed `compas.numerical.drx`.


## [1.14.1] 2022-02-16

Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ def patched_m2r2_setup(app):
"sphinx.ext.graphviz",
"matplotlib.sphinxext.plot_directive",
"m2r2",
"nbsphinx",
# "nbsphinx",
"sphinx.ext.autodoc.typehints",
"tabs"
]
Expand Down
2 changes: 1 addition & 1 deletion requirements-dev.txt
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ isort
m2r2
nbsphinx
pydocstyle
pytest >=3.2
pytest <7.1
sphinx_compas_theme >=0.15.18
sphinx >=3.4
twine
Expand Down
4 changes: 2 additions & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@ matplotlib >= 2.2, < 3.1; python_version >= '3.5' and python_version <= '3.7' an
matplotlib >= 3.1; python_version >= '3.8' and sys_platform == 'win32'
matplotlib >= 2.2; python_version >= '3.5' and sys_platform != 'win32'
networkx
numba
# numba
numpy >= 1.15.4
pillow
planarity ; sys_platform != 'win32'
# planarity ; sys_platform != 'win32'
pycollada
schema
scipy >= 1.1
Expand Down
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,7 @@ def read(*names, **kwargs):
python_requires='>=2.7',
extras_require={
'planarity': ['planarity'],
'numba': ['numba']
},
entry_points={
'console_scripts': [
Expand Down
14 changes: 0 additions & 14 deletions src/compas/numerical/drx/__init__.py

This file was deleted.

Loading