Skip to content

Commit

Permalink
Updating docs and version for next release
Browse files Browse the repository at this point in the history
  • Loading branch information
hozn committed Dec 27, 2013
1 parent df6df41 commit bd8b308
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 4 deletions.
3 changes: 2 additions & 1 deletion MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
include docs/news.rst
recursive-include docs *
recursive-include stravalib/tests/resources *
3 changes: 2 additions & 1 deletion docs/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,8 @@ list this package as a dependency in your own `install_requires` directive in `s
download it and explore Strava content in your favorite python REPL.

In order to make use of this library, you will need to have access keys for one or more Strava users.
These access keys can be fetched by
These access keys can be fetched by using helper methods provided by :class:`stravalib.client.Client` class.
See :ref:`auth` for more details.

Usage
-----
Expand Down
2 changes: 1 addition & 1 deletion docs/usage/overview.rst
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ Retrieving Single Entities
==========================

The simplest case are the client methods that return single entities. The entity object
types are instances of :module:`stravalib.model` classes. For example::
types are instances of :mod:`stravalib.model` classes. For example::

client = Client(access_token=JOHNS_ACCESS_TOKEN)
athlete = client.get_athlete() # Get John's full athlete record
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
use_setuptools()
from setuptools import setup, find_packages

version = '0.2dev3'
version = '0.2.0'

news = os.path.join(os.path.dirname(__file__), 'docs', 'news.rst')
news = open(news).read()
Expand Down
1 change: 1 addition & 0 deletions stravalib/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -767,6 +767,7 @@ def wait(self, timeout=None, poll_interval=1.0):
Wait for the upload to complete or to err out.
Will return the resulting Activity or raise an exception if the upload fails.
:param timeout: The max seconds to wait. Will raise TimeoutExceeded exception if this
time passes without success or error response.
:type timeout: float
Expand Down

0 comments on commit bd8b308

Please sign in to comment.