Skip to content
Snippets Groups Projects
Commit 5784d132 authored by nimrod's avatar nimrod
Browse files

- Updated documentation, release procedure.

parent 321977d0
No related branches found
No related tags found
No related merge requests found
...@@ -51,15 +51,16 @@ Example usage can be seen in :code:`tests.sh`. ...@@ -51,15 +51,16 @@ Example usage can be seen in :code:`tests.sh`.
Testing Testing
------- -------
Local tests require both a Python 2, Python 3 and Tox installed and can be run Tests require Python 2.7, Python 3.2 or later and Tox and are run by running
by running :code:`tox`. Alternatively, Travis CI is used to test on multiple :code:`tox`. Also, Travis CI is used to test on multiple Python versions for
versions of Python for every push. every push.
Release Release
------- -------
Currently releases are done locally by running :code:`tox -e release` and Releases require Python 2.7 or Python 3.2 or later and Tox. To release a new
require Python and Tox installed. Releases with Travis CI are coming. version bump the version in the :code:`VERSION` file and run :code:`tox -e
release`.
License License
------- -------
......
...@@ -31,6 +31,6 @@ deps = ...@@ -31,6 +31,6 @@ deps =
twine twine
wheel wheel
commands = commands =
sh -c 'git tag -f "$(cat VERSION)"' sh -c 'git tag "$(cat VERSION)" && git push --tags'
python setup.py bdist_wheel python setup.py bdist_wheel
twine upload --skip-existing dist/*.whl twine upload --skip-existing dist/*.whl
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment