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
1 change: 1 addition & 0 deletions demo/cpp/test.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Script for testing."""

import os
import sys

Expand Down
1 change: 1 addition & 0 deletions python/basix/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
The core of the library is written in C++, but the majority of Basix's
functionality can be used via this Python interface.
"""

from basix import cell, finite_element, lattice, polynomials, quadrature, sobolev_spaces
from basix._basixcpp import __version__
from basix.cell import CellType, geometry, topology
Expand Down
1 change: 0 additions & 1 deletion python/basix/cell.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
# SPDX-License-Identifier: MIT
"""Functions to get cell geometry information and manipulate cell types."""


import numpy.typing as npt

from basix._basixcpp import CellType as _CT
Expand Down
1 change: 0 additions & 1 deletion python/basix/polynomials.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
# SPDX-License-Identifier: MIT
"""Functions for working with polynomials."""


import numpy as np
import numpy.typing as npt

Expand Down
1 change: 0 additions & 1 deletion python/basix/quadrature.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
# SPDX-License-Identifier: MIT
"""Functions to manipulate quadrature types."""


import numpy as np
import numpy.typing as _npt

Expand Down
1 change: 0 additions & 1 deletion python/basix/sobolev_spaces.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
# SPDX-License-Identifier: MIT
"""Functions for handling Sobolev spaces."""


from basix._basixcpp import SobolevSpace as _SS
from basix._basixcpp import sobolev_space_intersection as _ssi
from basix.utils import Enum
Expand Down