-
Notifications
You must be signed in to change notification settings - Fork 36
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Updating
native-libraries
to use doctest for OS X "extra dependenci…
…es". This is part of an effort to keep the doctests from getting stale. In the process: - Added a special `scripts/osx/nox-install-for-doctest.sh` which will create a "delocated" wheel and install it when running `nox -s doctest` - Added `:linux-only:` and `:mac-os-x-only:` options for the `doctest` directive (in `doctest_monkeypatch.py`) Filed: sphinx-doc/sphinx#4183
- Loading branch information
Showing
4 changed files
with
123 additions
and
24 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
#!/bin/bash | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# You may obtain a copy of the License at | ||
# | ||
# https://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
|
||
set -e -x | ||
|
||
# 0. Install the ``delocate`` tool. | ||
pip install --upgrade delocate | ||
|
||
# 1. Build the wheel from source. | ||
BASIC_DIR=$(mktemp -d) | ||
pip wheel . --wheel-dir ${BASIC_DIR} | ||
|
||
# 2. "delocate" the built wheel. | ||
DELOCATED_DIR=$(mktemp -d) | ||
# NOTE: This intentionally does not use ``--check-archs``. | ||
delocate-wheel \ | ||
--wheel-dir ${DELOCATED_DIR} \ | ||
--verbose \ | ||
${BASIC_DIR}/bezier*.whl | ||
|
||
# 3. Install from the "delocated" wheel. | ||
pip install ${DELOCATED_DIR}/bezier*.whl | ||
|
||
# Clean up temporary directories. | ||
rm -fr ${BASIC_DIR} | ||
rm -fr ${DELOCATED_DIR} |