Skip to content

Commit 1d7cd99

Browse files
version 0.0.2
1 parent 92a91a1 commit 1d7cd99

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

make.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
#!/usr/bin/python3
2+
# PYTHON_ARGCOMPLETE_OK
3+
24
import os
35
import py_compile
46
import sys
@@ -30,7 +32,7 @@ def clean(conf):
3032

3133
@target(conf=CONF)
3234
def upload(conf):
33-
run('twine upload --repository-url=https://test.pypi.org/legacy/ %s/*' % conf.distdir, mode='shell')
35+
run('twine upload %s/*' % conf.distdir, mode='shell')
3436

3537

3638
pymake3()

src/pymake3/cli/main.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ def pymake3(conf=None, args=None):
9494

9595
report_problems()
9696

97-
targets = args[1:]
97+
targets = args.todo
9898
if not targets:
9999
targets = [ None ]
100100
for name in targets:

src/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
setup(
88
name="pymake3",
9-
version="0.0.1",
9+
version="0.0.2",
1010
author="Shlomi Matichin",
1111
author_email="[email protected]",
1212
description=(

0 commit comments

Comments
 (0)