Skip to content

Commit

Permalink
replaces versioneer with version from pkgmt
Browse files Browse the repository at this point in the history
  • Loading branch information
edublancas committed Oct 17, 2021
1 parent 48aea79 commit a296e0d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 287 deletions.
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@
'flake8',
'yapf',
'twine',
'pkgmt',
]

ALL = DOCS + TEST + DEV
Expand Down
3 changes: 2 additions & 1 deletion tasks.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
Setup tasks (requires invoke: pip install invoke)
"""
from invoke import task
import versioneer


@task
Expand All @@ -28,11 +27,13 @@ def setup(c, version=None):
def new(c):
"""Release a new version
"""
from pkgmt import versioneer
versioneer.release(project_root='.', tag=True)


@task
def upload(c, tag, production=True):
"""Upload to PyPI
"""
from pkgmt import versioneer
versioneer.upload(tag, production=production)
286 changes: 0 additions & 286 deletions versioneer.py

This file was deleted.

0 comments on commit a296e0d

Please sign in to comment.