We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 660b272 commit 168ac3aCopy full SHA for 168ac3a
2 files changed
.github/workflows/ci.yml
@@ -74,6 +74,9 @@ jobs:
74
- name: Build wheels
75
uses: pypa/cibuildwheel@v2.21.1
76
env:
77
+ # * APIs not supported by PyPy
78
+ CIBW_SKIP: >
79
+ pp*
80
CIBW_ARCHS: ${{ matrix.os.archs }}
81
CIBW_BUILD_VERBOSITY: "1"
82
CIBW_MANYLINUX_X86_64_IMAGE: manylinux_2_28
libparse/wrapper.cpp
@@ -15,13 +15,14 @@
15
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16
// See the License for the specific language governing permissions and
17
// limitations under the License.
18
-#define private public
19
-#include "libparse.h"
20
-#undef private
+#include <sstream>
+#include <string>
21
22
#include <pybind11/pybind11.h>
23
#include <pybind11/stl.h>
24
+#include "libparse.h"
25
+
26
#include "stdio_filebuf.h"
27
28
namespace py = pybind11;
0 commit comments