Skip to content

Commit

Permalink
Merge pull request #53 from ManishaBayya/basescript
Browse files Browse the repository at this point in the history
Completely compatible in python2 and python3
  • Loading branch information
prashanthellina authored Jan 24, 2018
2 parents 14ed76f + b428d12 commit cf9c8ab
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@ deploy:
- basescript/utils.py
- examples/adder.py
- examples/helloworld.py
name: basescript-0.1.17
tag_name: 0.1.17
name: basescript-0.2.0
tag_name: 0.2.0
on:
repo: deep-compute/basescript
- provider: pypi
Expand Down
1 change: 1 addition & 0 deletions basescript/basescript.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ def __init__(self, args=None):
self.define_baseargs(self.parser)

self.subcommands = self.parser.add_subparsers(title='commands')
self.subcommands.dest = 'commands'
self.define_subcommands(self.subcommands)
self.subcommand_run = self.subcommands.add_parser('run')
self.subcommand_run.set_defaults(func=self.run)
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ def get_long_description():

long_description = get_long_description()

version = '0.1.17'
version = '0.2.0'
setup(
name="basescript",
version=version,
Expand Down

0 comments on commit cf9c8ab

Please sign in to comment.