From 53b930b75ffddff5919ae2768a9c5a2150034c01 Mon Sep 17 00:00:00 2001 From: Mike Helmick Date: Tue, 11 Jun 2013 14:03:26 -0400 Subject: [PATCH] Update requests requirement, update READMEs, new secure variables, attempting better coverage reports Secure variables were exposed. Had to make new ones. --- .travis.yml | 14 +++++++------- README.md | 2 +- README.rst | 4 ++-- setup.py | 2 +- 4 files changed, 11 insertions(+), 11 deletions(-) diff --git a/.travis.yml b/.travis.yml index 9580cc5..9464162 100644 --- a/.travis.yml +++ b/.travis.yml @@ -6,13 +6,13 @@ python: env: global: - secure: |- - bLlM8JPXiqKIryMwExTEFoEo5op3FqvQQu0yn0xv1okrcH/MEvJAsm4zDd7p - yt0riXRpp9aOkU/SkL/1TVkq5E75uXYhaLuT/BgjDmLcw/Sp7Tgsk8b5KLDM - RqSrsGXKu7GQCI3MhhWJEAWyU2WVyhZERh5wOY+ic9JCiZloqMw= + ICEoq4tQdOCGzpQAgLHunOflhLqs7hb1xYuD6mXZCbO/L+hDI4+pImA9mZZd + doyfyFMuNprWfgdUdcAL3axliRR2TyQIt51FLf7bD01jJEPa0GOKlKE/s/+3 + 7oDs+kkSr81w9rvIqpx55nE8+DYzkh+TwDp5oAT+m/EE+lFItfk= - secure: |- - JlQjabb2tADza5cEmyWuwi5pECjknkiWXj4elTl/UrSYPLeTruTBYBlvtrOl - 4XF3RWcPwxcBr1JD/Ze1JxMVebYUpvZSTXZXFq6jbjcQTBa7QuH6rraxnj6W - /Abx+NYxSBcEex/RsZtSqshzCZGAOI0mdaSdQMd3k0Gxhsg+eRo= + LNowlSsXwgbFT0g8B4fDlBmOhycAfSxUNFiYBDn70H93WDLr9drEbE7Wl2Mv + AlGJw0kXey4K4oTV4+Bsy6gacsvCINpFk7f4ulTDHCH4MTONtG1n51RlkLW0 + SAH8di1DiXR3PqRv+NKixVsgI0ZCY1B78NuvaoDL68bfu0KEdHs= - secure: |- kC9hGpdJJesmZZGMXEoPWK/lzIU6vUeguV/yI2jLgRin0EKPsgds0qR4737x 2Z2q1+CFUlvHkl+povGcm0/A1rkNqU0KKBcxRBu/XXRxJ3DWp7gIGsmoyWUW @@ -27,7 +27,7 @@ env: - TEST_TWEET_ID=332992304010899457 - TEST_LIST_ID=574 install: pip install -r requirements.txt -script: nosetests -v test_twython:TwythonAPITestCase test_twython:TwythonAuthTestCase test_twython:TwythonStreamTestCase --logging-filter="twython" --with-cov --cov twython --cov-report term-missing +script: nosetests -v --logging-filter="twython" --with-cov --cov twython test_twython.py --cov-report term-missing notifications: email: false branches: diff --git a/README.md b/README.md index 55f2d5c..9ba24ca 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ Twython ======= -[![Build Status](https://travis-ci.org/ryanmcgrath/twython.png?branch=master)](https://travis-ci.org/ryanmcgrath/twython) [![Downloads](https://pypip.in/d/twython/badge.png)](https://crate.io/packages/twython/) [![Coverage Status](https://coveralls.io/repos/ryanmcgrath/twython/badge.png?branch=3.0.0)](https://coveralls.io/r/ryanmcgrath/twython?branch=3.0.0) +[![Build Status](https://travis-ci.org/ryanmcgrath/twython.png?branch=master)](https://travis-ci.org/ryanmcgrath/twython) [![Downloads](https://pypip.in/d/twython/badge.png)](https://crate.io/packages/twython/) [![Coverage Status](https://coveralls.io/repos/ryanmcgrath/twython/badge.png?branch=master)](https://coveralls.io/r/ryanmcgrath/twython?branch=master) ```Twython``` is a library providing an easy (and up-to-date) way to access Twitter data in Python. Actively maintained and featuring support for both Python 2.6+ and Python 3, it's been battle tested by companies, educational institutions and individuals alike. Try it today! diff --git a/README.rst b/README.rst index 1857582..b269014 100644 --- a/README.rst +++ b/README.rst @@ -6,8 +6,8 @@ Twython :target: https://travis-ci.org/ryanmcgrath/twython .. image:: https://pypip.in/d/twython/badge.png :target: https://crate.io/packages/twython/ -.. image:: https://coveralls.io/repos/ryanmcgrath/twython/badge.png?branch=3.0.0 - :target: https://coveralls.io/r/ryanmcgrath/twython?branch=3.0.0 +.. image:: https://coveralls.io/repos/ryanmcgrath/twython/badge.png?branch=master + :target: https://coveralls.io/r/ryanmcgrath/twython?branch=master ``Twython`` is a library providing an easy (and up-to-date) way to access Twitter data in Python. Actively maintained and featuring support for both Python 2.6+ and Python 3, it's been battle tested by companies, educational institutions and individuals alike. Try it today! diff --git a/setup.py b/setup.py index 6fbaf3d..e0501a9 100755 --- a/setup.py +++ b/setup.py @@ -20,7 +20,7 @@ if sys.argv[-1] == 'publish': setup( name='twython', version=__version__, - install_requires=['requests==1.2.2', 'requests_oauthlib==0.3.2'], + install_requires=['requests==1.2.3', 'requests_oauthlib==0.3.2'], author='Ryan McGrath', author_email='ryan@venodesigns.net', license=open('LICENSE').read(),