forked from celery/celery
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix Travis CI job for Python 3.7 (celery#5672)
The typing package is a built-in for all currently supported Python versions, so it seems to be not required anymore. Presence of this package leads to an error on CI for Python 3.7. These changes also: - remove redundant options from .travis.yml
- Loading branch information
Showing
4 changed files
with
10 additions
and
5 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,9 @@ | ||
#!/bin/bash | ||
|
||
pip --disable-pip-version-check install "$@" | ||
|
||
if [[ "${TRAVIS_PYTHON_VERSION}" == "3.7" ]]; then | ||
# We have to uninstall the typing package which comes along with | ||
# the couchbase package in order to prevent an error on CI for Python 3.7. | ||
pip uninstall typing -y | ||
fi |