-
Notifications
You must be signed in to change notification settings - Fork 388
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix Requests 2, Version Bump to 0.3.5
This fixes a compatiblity issue with the new version of requests. Bumps the release version to 0.3.5, and closes #39.
- Loading branch information
Showing
6 changed files
with
63 additions
and
6 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 |
---|---|---|
@@ -1,13 +1,15 @@ | ||
language: python | ||
before_install: openssl version | ||
env: | ||
- WITH_REQUESTS="True" | ||
- WITH_REQUESTS="2.x" | ||
- WITH_REQUESTS="1.x" | ||
- WITH_REQUESTS="False" | ||
python: | ||
- 2.6 | ||
- 2.7 | ||
- pypy | ||
install: | ||
- pip install PyYAML pytest --use-mirrors | ||
- if [ $WITH_REQUESTS = "True" ] ; then pip install requests; fi | ||
- if [ $WITH_REQUESTS = "1.x" ] ; then pip install requests==1.2.3; fi | ||
- if [ $WITH_REQUESTS = "2.x" ] ; then pip install requests; fi | ||
script: python setup.py test |
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
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