From bf1eac7bac22fbaf2497c87dba849df3fb64f5c3 Mon Sep 17 00:00:00 2001 From: Henry Fredrick Schreiner Date: Wed, 8 Aug 2018 15:24:49 +0200 Subject: [PATCH] Version bump --- build.py | 7 ++----- plumbum/version.py | 4 ++-- setup.cfg | 5 +++++ 3 files changed, 9 insertions(+), 7 deletions(-) create mode 100644 setup.cfg diff --git a/build.py b/build.py index d928d0ea9..bf6847abe 100755 --- a/build.py +++ b/build.py @@ -14,10 +14,7 @@ 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") @@ -25,7 +22,7 @@ def main(self): 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__": diff --git a/plumbum/version.py b/plumbum/version.py index e6e3a4205..7c9b5942b 100644 --- a/plumbum/version.py +++ b/plumbum/version.py @@ -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" diff --git a/setup.cfg b/setup.cfg new file mode 100644 index 000000000..ed8a958e0 --- /dev/null +++ b/setup.cfg @@ -0,0 +1,5 @@ +[bdist_wheel] +universal = 1 + +[metadata] +license_file = LICENSE