From: Ian Cordasco Date: Mon, 26 Nov 2012 18:23:38 +0000 (-0500) Subject: Add a bit more to the developer's documentation X-Git-Tag: v1.0.0~104^2^2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=24ed8c9457be0fd8fe3c5ac32d5c32e6996593ef;p=services%2Fpython-requests.git Add a bit more to the developer's documentation I'm not sure what else could be added to satisfy #601. If this is sufficient, I suggest closing that. --- diff --git a/docs/dev/todo.rst b/docs/dev/todo.rst index 7aa2cae..e9930a8 100644 --- a/docs/dev/todo.rst +++ b/docs/dev/todo.rst @@ -23,7 +23,19 @@ order to run requests' test suite:: $ make $ make test -The ``Makefile`` has various useful targets for testing. +The ``Makefile`` has various useful targets for testing. For example, if you +want to see how your pull request will behave with Travis-CI you would run +``make travis``. + +Versions of Python to Test On +----------------------------- + +Officially (as of 26-Nov-2012), requests supports python 2.6-3.3. In the +future, support for 3.1 and 3.2 may be dropped. In general you will need to +test on at least one python 2 and one python 3 version. You can also set up +Travis CI for your own fork before you submit a pull request so that you are +assured your fork works. To use Travis CI for your fork and other projects see +their `documentation `_. What Needs to be Done ---------------------