-
Notifications
You must be signed in to change notification settings - Fork 420
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix errors with latest flake8 (#710)
* fix errors with latest flake8 * Also fix the macOS builds * fix? * allow urllib3 to fail for now
- Loading branch information
1 parent
fe0120f
commit c3697ad
Showing
4 changed files
with
15 additions
and
11 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -88,19 +88,23 @@ matrix: | |
- env: TOXENV=py35-cryptographyMaster | ||
- env: TOXENV=py36-cryptographyMaster | ||
- env: TOXENV=pypy-cryptographyMaster | ||
# TODO: undo this once upstream fixes their tests | ||
- python: "3.5" | ||
env: TOXENV=py35-urllib3Master | ||
|
||
|
||
install: | ||
- | | ||
if [[ "$(uname -s)" == 'Darwin' ]]; then | ||
brew update | ||
if [[ "${OPENSSL}" == "1.1.0" ]]; then | ||
brew install [email protected] | ||
brew upgrade [email protected] | ||
else | ||
brew upgrade openssl | ||
fi | ||
curl -O https://bootstrap.pypa.io/get-pip.py | ||
python get-pip.py --user | ||
pip install --user virtualenv | ||
python -m pip install --user virtualenv | ||
else | ||
# install our own pypy. This can be removed if and when Travis gets a reasonably up to date pypy | ||
if [[ "${TOXENV}" = pypy* ]]; then | ||
|
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