Skip to content
Open
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
2 changes: 1 addition & 1 deletion .github/workflows/wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:

# Used to host cibuildwheel
- name: Build wheel
uses: pypa/cibuildwheel@v3.4.1
uses: pypa/cibuildwheel@v4.1.0
with:
output-dir: wheelhouse
- uses: actions/upload-artifact@v7
Expand Down
10 changes: 4 additions & 6 deletions src/aho-corasick.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -25,12 +25,10 @@
#include <libsemigroups/types.hpp> // for word_type

// pybind11....
#include <pybind11/cast.h> // for arg
#include <pybind11/detail/common.h> // for const_, overload_cast, ove...
#include <pybind11/detail/descr.h> // for operator+
#include <pybind11/pybind11.h> // for class_, init, module
#include <pybind11/pytypes.h> // for sequence, str_attr_accessor
#include <pybind11/stl.h> // for std::vector conversion
#include <pybind11/cast.h> // for arg
#include <pybind11/pybind11.h> // for class_, init, module
#include <pybind11/pytypes.h> // for sequence, str_attr_accessor
#include <pybind11/stl.h> // for std::vector conversion

// libsemigroups_pybind11....
#include "main.hpp" // for init_aho_corasick
Expand Down
3 changes: 1 addition & 2 deletions src/cong.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@
#include <libsemigroups/todd-coxeter.hpp>

// pybind11....
#include <pybind11/detail/common.h>
#include <pybind11/pybind11.h>
#include <pybind11/stl.h>

Expand Down Expand Up @@ -248,7 +247,7 @@ obviously infinite; ``False`` is returned if it is not.
congruence has infinitely many classes.
)pbdoc");
} // bind_cong
} // namespace
} // namespace

void init_cong(py::module& m) {
bind_cong<word_type>(m, "CongruenceWord");
Expand Down
14 changes: 6 additions & 8 deletions src/present.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -31,13 +31,11 @@
#include <libsemigroups/types.hpp> // for word_type

// pybind11....
#include <pybind11/cast.h> // for arg
#include <pybind11/detail/common.h> // for const_, overload_cast, ove...
#include <pybind11/detail/descr.h> // for operator+
#include <pybind11/functional.h> // for std::function conversion
#include <pybind11/pybind11.h> // for class_, init, module
#include <pybind11/pytypes.h> // for sequence, str_attr_accessor
#include <pybind11/stl.h> // for std::vector conversion
#include <pybind11/cast.h> // for arg
#include <pybind11/functional.h> // for std::function conversion
#include <pybind11/pybind11.h> // for class_, init, module
#include <pybind11/pytypes.h> // for sequence, str_attr_accessor
#include <pybind11/stl.h> // for std::vector conversion

// libsemigroups_pybind11....
#include "main.hpp" // for init_present
Expand Down Expand Up @@ -2087,7 +2085,7 @@ defined in the alphabet, and that the inverses act as semigroup inverses.
* :any:`presentation.throw_if_bad_inverses`
)pbdoc");
} // bind_inverse_present
} // namespace
} // namespace

void init_present(py::module& m) {
bind_present<word_type>(m, "PresentationWord");
Expand Down
1 change: 0 additions & 1 deletion src/sims.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@
//

// C++ stl headers....
#include <pybind11/detail/common.h>
#include <vector> // for vector

// libsemigroups....
Expand Down
3 changes: 1 addition & 2 deletions src/to-presentation.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,7 @@

// C++ std headers
#include <functional> // for function
#include <pybind11/detail/common.h>
#include <string> // for string, basic_string, oper...
#include <string> // for string, basic_string, oper...

#include <libsemigroups/cong.hpp> // for Congruence
#include <libsemigroups/detail/multi-view.hpp> // for MultiView
Expand Down
Loading