| OLD | NEW |
| (Empty) |
| 1 How to Help | |
| 2 =========== | |
| 3 | |
| 4 Requests is under active development, and contributions are more than welcome! | |
| 5 | |
| 6 #. Check for open issues or open a fresh issue to start a discussion around a bu
g. | |
| 7 There is a Contributor Friendly tag for issues that should be ideal for peopl
e who are not very | |
| 8 familiar with the codebase yet. | |
| 9 #. Fork `the repository <https://github.com/kennethreitz/requests>`_ on GitHub a
nd start making your | |
| 10 changes to a new branch. | |
| 11 #. Write a test which shows that the bug was fixed. | |
| 12 #. Send a pull request and bug the maintainer until it gets merged and published
. :) | |
| 13 Make sure to add yourself to `AUTHORS <https://github.com/kennethreitz/reques
ts/blob/master/AUTHORS.rst>`_. | |
| 14 | |
| 15 Feature Freeze | |
| 16 -------------- | |
| 17 | |
| 18 As of v1.0.0, Requests has now entered a feature freeze. Requests for new | |
| 19 features and Pull Requests implementing those features will not be accepted. | |
| 20 | |
| 21 Development Dependencies | |
| 22 ------------------------ | |
| 23 | |
| 24 You'll need to install py.test in order to run the Requests' test suite:: | |
| 25 | |
| 26 $ pip install -r requirements.txt | |
| 27 $ py.test | |
| 28 platform darwin -- Python 2.7.3 -- pytest-2.3.4 | |
| 29 collected 25 items | |
| 30 | |
| 31 test_requests.py ......................... | |
| 32 25 passed in 3.50 seconds | |
| 33 | |
| 34 Runtime Environments | |
| 35 -------------------- | |
| 36 | |
| 37 Requests currently supports the following versions of Python: | |
| 38 | |
| 39 - Python 2.6 | |
| 40 - Python 2.7 | |
| 41 - Python 3.1 | |
| 42 - Python 3.2 | |
| 43 - Python 3.3 | |
| 44 - PyPy 1.9 | |
| 45 | |
| 46 Support for Python 3.1 and 3.2 may be dropped at any time. | |
| 47 | |
| 48 Google App Engine will never be officially supported. Pull Requests for compatib
ility will be accepted, as long as they don't complicate the codebase. | |
| 49 | |
| 50 | |
| 51 Are you crazy? | |
| 52 -------------- | |
| 53 | |
| 54 - SPDY support would be awesome. No C extensions. | |
| 55 | |
| 56 Downstream Repackaging | |
| 57 ---------------------- | |
| 58 | |
| 59 If you are repackaging Requests, please note that you must also redistribute the
``cacerts.pem`` file in order to get correct SSL functionality. | |
| OLD | NEW |