File tree 4 files changed +11
-11
lines changed
4 files changed +11
-11
lines changed Original file line number Diff line number Diff line change 12
12
strategy :
13
13
fail-fast : false
14
14
matrix :
15
- platform : [ubuntu-latest] # add after 2.6.0: windows-latest, macos-latest
15
+ platform : [ubuntu-latest, windows-latest, macos-latest]
16
16
python-version : ["3.6", "3.8"]
17
17
18
18
runs-on : ${{ matrix.platform }}
Original file line number Diff line number Diff line change 12
12
13
13
env :
14
14
CIBW_TEST_COMMAND : python {project}/tests/test.py
15
- # This is a hack that can be removed when we start using wheels for pybind11
16
- CIBW_BEFORE_BUILD : pip install cmake git+https://github.com/pybind/ pybind11.git@master
15
+ # This can be removed if pyproject.toml is used
16
+ CIBW_BEFORE_BUILD : pip install pybind11
17
17
18
18
19
19
jobs :
@@ -52,14 +52,14 @@ jobs:
52
52
- uses : actions/setup-python@v2
53
53
54
54
- name : Install cibuildwheel
55
- run : python -m pip install cibuildwheel==1.6.0
55
+ run : python -m pip install cibuildwheel==1.6.1
56
56
57
57
- name : Build wheel
58
58
run : python -m cibuildwheel --output-dir wheelhouse
59
59
env :
60
- # We have to skip Win 3.5 for now, because it doesn't support PEP 518
61
- # build from a portable install (can re-add when using wheels for pybind11)
62
- CIBW_SKIP : cp27-win* cp35-win*
60
+ # Python 2.7 on Windows requires a workaround for C++11 support,
61
+ # built separately below
62
+ CIBW_SKIP : cp27-win*
63
63
64
64
- name : Show files
65
65
run : ls -lh wheelhouse
88
88
- uses : actions/setup-python@v2
89
89
90
90
- name : Install cibuildwheel
91
- run : python -m pip install cibuildwheel==1.6.0
91
+ run : python -m pip install cibuildwheel==1.6.1
92
92
93
93
- uses : ilammy/msvc-dev-cmd@v1
94
94
Original file line number Diff line number Diff line change 12
12
# And never do this yourself unless you know what you are doing (it
13
13
# explicitly is okay with pybind11, but may not be with arbitrary
14
14
# libraries)
15
- python -m pip install -vvv "git+https://github.com/pybind/ pybind11.git@master "
15
+ python -m pip install -vvv "pybind11==2.6.0b1 "
16
16
python -m pip install . -vvv --no-deps
17
17
python -m pip uninstall -y pybind11
18
18
Original file line number Diff line number Diff line change 41
41
ext_modules = ext_modules ,
42
42
# Note: You have to add pybind11 to both setup and install requires to make
43
43
# it available during the build. Using PEP 518's pyproject.toml is better!
44
- setup_requires = ["pybind11 @ git+https://github.com/pybind/pybind11.git@master " ],
45
- install_requires = ["pybind11 @ git+https://github.com/pybind/pybind11.git@master " ],
44
+ setup_requires = ["pybind11==2.6.0b1 " ],
45
+ install_requires = ["pybind11==2.6.0b1 " ],
46
46
extras_require = {"test" : "pytest" },
47
47
# Currently, build_ext only provides an optional "highest supported C++
48
48
# level" feature, but in the future it may provide more features.
You can’t perform that action at this time.
0 commit comments