Skip to content

Commit

Permalink
Version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
henryiii committed Aug 8, 2018
1 parent d923dc4 commit bf1eac7
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 7 deletions.
7 changes: 2 additions & 5 deletions build.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,18 +14,15 @@ class BuildProject(cli.Application):
def main(self):
delete(local.cwd // "*.egg-info", "build", "dist")

#if self.upload:
# local.python("setup.py", "register")

local.python("setup.py", "sdist", "bdist_wininst", "--plat-name=win32", "bdist_wheel")
local.python("setup.py", "sdist", "bdist_wheel")

delete(local.cwd // "*.egg-info", "build")

if self.upload:
if twine is None:
print("Twine not installed, cannot securely upload. Install twine.")
else:
twine['upload', 'dist/*tar.gz', 'dist/*.exe', 'dist/*.whl'] & FG
twine['upload', 'dist/*tar.gz', 'dist/*.whl'] & FG


if __name__ == "__main__":
Expand Down
4 changes: 2 additions & 2 deletions plumbum/version.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
version = (1, 6, 6)
version = (1, 6, 7)
version_string = ".".join(map(str, version))
release_date = "2018.02.12"
release_date = "2018.08.08"
5 changes: 5 additions & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
[bdist_wheel]
universal = 1

[metadata]
license_file = LICENSE

0 comments on commit bf1eac7

Please sign in to comment.