Skip to content

Commit

Permalink
Release 0.0.4 - now with union decomposition!
Browse files Browse the repository at this point in the history
  • Loading branch information
Richard Winslow committed Dec 3, 2017
1 parent f3807b1 commit a67cbc7
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 1 deletion.
14 changes: 14 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,3 +54,17 @@ The "dev.txt" dependencies also include [pytest-cov](https://pypi.python.org/pyp
If you want to turn verbosity on to figure out what's going on in a test, you need the `--gabby` flag (since `py.test` owns its own `-v` flag). You'll probably also want to run just one test at a time, because `--gabby` is way gabby:

py.test --gabby -vv -k some_particular_test_function

### Uploading to PyPI

This and other aspects of project setup, including running the CLI locally and using setup.py, are covered in the blog post linked above. I'm copying the PyPI upload stuff here for my own convenience, but I ask, of course, that you please submit pull requests rather than uploading to PyPI yourself:

$ python setup.py sdist
$ ls dist
hq-0.0.4.tar.gz

$ pip install twine
$ twine upload dist/hq-0.0.4.tar.gz
Uploading distributions to https://pypi.python.org/pypi
Uploading hq-0.0.4.tar.gz
Finished
2 changes: 1 addition & 1 deletion hq/hq.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
from .soup_util import make_soup
from .verbosity import verbose_print, set_verbosity

__version__ = '0.0.3'
__version__ = '0.0.4'


def main():
Expand Down

0 comments on commit a67cbc7

Please sign in to comment.