Skip to content

Commit

Permalink
feat: bump to 2.6.0rc3
Browse files Browse the repository at this point in the history
  • Loading branch information
henryiii committed Oct 19, 2020
1 parent eb018b9 commit 65089a3
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ jobs:
- uses: actions/setup-python@v2

- name: Install cibuildwheel
run: python -m pip install cibuildwheel==1.6.1
run: python -m pip install cibuildwheel==1.6.3

- name: Build wheel
run: python -m cibuildwheel --output-dir wheelhouse
Expand Down Expand Up @@ -88,7 +88,7 @@ jobs:
- uses: actions/setup-python@v2

- name: Install cibuildwheel
run: python -m pip install cibuildwheel==1.6.1
run: python -m pip install cibuildwheel==1.6.3

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

Expand Down
2 changes: 1 addition & 1 deletion conda.recipe/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ build:
# And never do this yourself unless you know what you are doing (it
# explicitly is okay with pybind11, but may not be with arbitrary
# libraries)
python -m pip install -vvv "pybind11==2.6.0b1"
python -m pip install -vvv "pybind11==2.6.0rc3"
python -m pip install . -vvv --no-deps
python -m pip uninstall -y pybind11
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,8 @@
ext_modules=ext_modules,
# Note: You have to add pybind11 to both setup and install requires to make
# it available during the build. Using PEP 518's pyproject.toml is better!
setup_requires=["pybind11==2.6.0b1"],
install_requires=["pybind11==2.6.0b1"],
setup_requires=["pybind11==2.6.0rc3"],
install_requires=["pybind11==2.6.0rc3"],
extras_require={"test": "pytest"},
# Currently, build_ext only provides an optional "highest supported C++
# level" feature, but in the future it may provide more features.
Expand Down

0 comments on commit 65089a3

Please sign in to comment.