Skip to content

Commit 65089a3

Browse files
committed
feat: bump to 2.6.0rc3
1 parent eb018b9 commit 65089a3

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.github/workflows/wheels.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ jobs:
5252
- uses: actions/setup-python@v2
5353

5454
- name: Install cibuildwheel
55-
run: python -m pip install cibuildwheel==1.6.1
55+
run: python -m pip install cibuildwheel==1.6.3
5656

5757
- name: Build wheel
5858
run: python -m cibuildwheel --output-dir wheelhouse
@@ -88,7 +88,7 @@ jobs:
8888
- uses: actions/setup-python@v2
8989

9090
- name: Install cibuildwheel
91-
run: python -m pip install cibuildwheel==1.6.1
91+
run: python -m pip install cibuildwheel==1.6.3
9292

9393
- uses: ilammy/msvc-dev-cmd@v1
9494

conda.recipe/meta.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ build:
1212
# And never do this yourself unless you know what you are doing (it
1313
# explicitly is okay with pybind11, but may not be with arbitrary
1414
# libraries)
15-
python -m pip install -vvv "pybind11==2.6.0b1"
15+
python -m pip install -vvv "pybind11==2.6.0rc3"
1616
python -m pip install . -vvv --no-deps
1717
python -m pip uninstall -y pybind11
1818

setup.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -41,8 +41,8 @@
4141
ext_modules=ext_modules,
4242
# Note: You have to add pybind11 to both setup and install requires to make
4343
# it available during the build. Using PEP 518's pyproject.toml is better!
44-
setup_requires=["pybind11==2.6.0b1"],
45-
install_requires=["pybind11==2.6.0b1"],
44+
setup_requires=["pybind11==2.6.0rc3"],
45+
install_requires=["pybind11==2.6.0rc3"],
4646
extras_require={"test": "pytest"},
4747
# Currently, build_ext only provides an optional "highest supported C++
4848
# level" feature, but in the future it may provide more features.

0 commit comments

Comments
 (0)