Skip to content

Commit

Permalink
Push version and add makefile helpers
Browse files Browse the repository at this point in the history
  • Loading branch information
emperorcezar committed Jun 15, 2018
1 parent 7c6fcdf commit 5dbb7a2
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 1 deletion.
12 changes: 12 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,15 @@ test:

testall:
tox

build: clean
python setup.py sdist bdist_wheel

clean:
rm -rf dist/*
rm -rf build/*

push:
twine upload -r pypi dist/*

.PHONY: coverage test testall build clean push
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ def run_tests(self):

setup(
name='django-recurrence',
version='1.5.0',
version='1.6.0',
license='BSD',

description='Django utility wrapping dateutil.rrule',
Expand Down

0 comments on commit 5dbb7a2

Please sign in to comment.