We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ee796d4 commit fdc222cCopy full SHA for fdc222c
.github/workflows/pip.yml
@@ -48,3 +48,24 @@ jobs:
48
49
- name: Test
50
run: python tests/test.py
51
+
52
+ build-mingw64:
53
+ runs-on: windows-latest
54
+ defaults:
55
+ run:
56
+ shell: msys2 {0}
57
+ steps:
58
+ - uses: msys2/setup-msys2@v2
59
+ with:
60
+ update: true
61
+ install: >-
62
+ mingw-w64-x86_64-gcc
63
+ mingw-w64-x86_64-python-pip
64
65
+ - uses: actions/checkout@v2
66
67
+ - name: Build and install
68
+ run: pip install .
69
70
+ - name: Test
71
+ run: python tests/test.py
pyproject.toml
@@ -2,7 +2,7 @@
2
requires = [
3
"setuptools>=42",
4
"wheel",
5
- "pybind11>=2.6.0",
+ "pybind11>=2.7.0",
6
]
7
8
build-backend = "setuptools.build_meta"
0 commit comments