Skip to content

Commit 20c27ad

Browse files
authored
Merge pull request #1284 from compas-dev/unpin-black
Unpin black
2 parents 867f25e + a8ff221 commit 20c27ad

File tree

24 files changed

+24
-1
lines changed

24 files changed

+24
-1
lines changed

requirements-dev.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
attrs >=17.4
2-
black ==22.12.0
2+
black
33
bump2version >=1.0.1
44
check-manifest >=0.36
55
compas_invocations

src/compas/_iotools.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
"""For the time being, these functions are only for internal use."""
2+
23
from contextlib import contextmanager
34
import io
45

src/compas/datastructures/_mutablemapping.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
- https://github.com/compas-dev/compas/issues/562
1010
- https://github.com/compas-dev/compas/issues/649
1111
"""
12+
1213
from __future__ import absolute_import
1314
from __future__ import division
1415
from __future__ import print_function

src/compas/geometry/projection.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
Many thanks to Christoph Gohlke, Martin John Baker, Sachin Joglekar and Andrew
1111
Ippoliti for providing code and documentation.
1212
"""
13+
1314
from compas.utilities import flatten
1415
from compas.geometry import allclose
1516
from compas.geometry import decompose_matrix

src/compas/geometry/rotation.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
Many thanks to Christoph Gohlke, Martin John Baker, Sachin Joglekar and Andrew
1111
Ippoliti for providing code and documentation.
1212
"""
13+
1314
from compas.utilities import flatten
1415
from compas.geometry import normalize_vector
1516
from compas.geometry import cross_vectors

src/compas/geometry/scale.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
Many thanks to Christoph Gohlke, Martin John Baker, Sachin Joglekar and Andrew
1111
Ippoliti for providing code and documentation.
1212
"""
13+
1314
from compas.utilities import flatten
1415
from compas.geometry import allclose
1516
from compas.geometry import multiply_matrices

src/compas/geometry/shear.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
Many thanks to Christoph Gohlke, Martin John Baker, Sachin Joglekar and Andrew
1111
Ippoliti for providing code and documentation.
1212
"""
13+
1314
from compas.utilities import flatten
1415
from compas.geometry import allclose
1516
from compas.geometry import matrix_from_shear_entries

src/compas/geometry/transformation.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
Many thanks to Christoph Gohlke, Martin John Baker, Sachin Joglekar and Andrew
1111
Ippoliti for providing code and documentation.
1212
"""
13+
1314
from compas.data import Data
1415

1516
from compas.tolerance import TOL

src/compas/geometry/translation.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
Many thanks to Christoph Gohlke, Martin John Baker, Sachin Joglekar and Andrew
1111
Ippoliti for providing code and documentation.
1212
"""
13+
1314
from compas.utilities import flatten
1415
from compas.geometry import allclose
1516
from compas.geometry import matrix_from_translation

src/compas/plugins.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
COMPAS has an extensible architecture based on plugins that allows to
33
customize and extend the functionality of the core framework.
44
"""
5+
56
# The COMPAS plugin system owes a lot to pluggy, the pytest plugin framework
67
# There are portions of code loosely based on pluggy's
78
# and while it is not strictly derivative work, we include

0 commit comments

Comments
 (0)