From 65089a39238a1486558aea0deee290f64c921c57 Mon Sep 17 00:00:00 2001 From: Henry Schreiner Date: Tue, 13 Oct 2020 11:33:42 -0400 Subject: [PATCH] feat: bump to 2.6.0rc3 --- .github/workflows/wheels.yml | 4 ++-- conda.recipe/meta.yaml | 2 +- setup.py | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/wheels.yml b/.github/workflows/wheels.yml index ead9f2a..0e57abf 100644 --- a/.github/workflows/wheels.yml +++ b/.github/workflows/wheels.yml @@ -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 @@ -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 diff --git a/conda.recipe/meta.yaml b/conda.recipe/meta.yaml index 97c662c..fefd4c3 100644 --- a/conda.recipe/meta.yaml +++ b/conda.recipe/meta.yaml @@ -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 diff --git a/setup.py b/setup.py index 52764a1..4b4e1a3 100644 --- a/setup.py +++ b/setup.py @@ -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.