Skip to content

Commit

Permalink
0.1.4 (#4)
Browse files Browse the repository at this point in the history
* Fix for Python<3.9
  • Loading branch information
smashedr authored Jul 6, 2023
1 parent 8d066d3 commit 8aed921
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
long_description = f.read()

setup(
version='0.1.3',
version='0.1.4',
name='zipline-cli',
description='Python 3 CLI for Zipline',
long_description=long_description,
Expand Down
2 changes: 1 addition & 1 deletion zipline.py
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ def main() -> None:
help='Zipline Access Token for Authorization or ZIPLINE_TOKEN.')
parser.add_argument('-e', '-x', '--expires_at', '--expire', type=str, default=get_default(['expire', 'expire_at']),
help='Ex: 1d, 2w. See: https://zipline.diced.tech/docs/guides/upload-options#image-expiration')
parser.add_argument('--embed', action=argparse.BooleanOptionalAction, default=get_default(['embed'], False, bool),
parser.add_argument('--embed', action='store_true', default=get_default(['embed'], False, bool),
help='Enable Embeds on Uploads.')
parser.add_argument('-s', '--setup', action='store_true', default=False,
help='Automatic Setup of Environment Variables.')
Expand Down

0 comments on commit 8aed921

Please sign in to comment.