fedora-infra / pkgwat.api

Python API for querying the Fedora Packages webapp
http://pkgwat.rtfd.org
Other
9 stars 9 forks source link

pkgwat.api

:Author: Ralph Bean rbean@redhat.com

.. comment: split here

Python API for pkgwat <http://pypi.python.org/pypi/pkgwat.cli>_.

Documentation: http://pkgwat.rtfd.org

Setting up development environment

Make sure you have virtualenv installed and create a new venv::

$ virtualenv env $ source env/bin/activate $ pip install -e .

Running the test suite

Make sure you have tox installed and run it (outside of any virtualenv)::

$ tox

Cutting a new release

In order to generate a list of changes to be placed into CHANGELOG.rst, use the following command (this example generates the log between 0.12 and HEAD refs)::

git log --reverse --format=format:'- %s %h <https://github.com/fedora-infra/pkgwat.api/commit/%H>_' 0.12..HEAD