From 834a9993a625cc4c6ac04b79cae1299e23474f16 Mon Sep 17 00:00:00 2001 From: Gerome Fournier Date: Wed, 23 Nov 2022 08:16:22 +0100 Subject: [PATCH] Get rid of stub file in wheel package --- CHANGELOG.md | 3 +++ PKG-INFO | 4 ++-- README.md | 4 ++-- setup.py | 5 ++--- texttable.py | 2 +- 5 files changed, 10 insertions(+), 8 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9173e90..4506560 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,8 @@ # Version History +v1.6.7 (2022-11-23) +* Get rid of stub file in wheel package (https://github.com/foutaise/texttable/issues/84) + v1.6.6 (2022-11-22) * Fix regression introduced in 1.6.5 release (https://github.com/foutaise/texttable/issues/83) diff --git a/PKG-INFO b/PKG-INFO index 1c72349..e707fb6 100644 --- a/PKG-INFO +++ b/PKG-INFO @@ -1,12 +1,12 @@ Metadata-Version: 1.0 Name: texttable -Version: 1.6.6 +Version: 1.6.7 Summary: module to create simple ASCII tables Home-page: https://github.com/foutaise/texttable/ Author: Gerome Fournier Author-email: jef@foutaise.org License: MIT -Download-URL: https://github.com/foutaise/texttable/archive/v1.6.6.tar.gz +Download-URL: https://github.com/foutaise/texttable/archive/v1.6.7.tar.gz Description: texttable is a module to generate a formatted text table, using ASCII characters. Platform: any diff --git a/README.md b/README.md index 7c843b4..e4dc7ef 100644 --- a/README.md +++ b/README.md @@ -219,10 +219,10 @@ DATA __author__ = 'Gerome Fournier ' __credits__ = 'Jeff Kowalczyk:\n - textwrap improved import\n ...at... __license__ = 'MIT' - __version__ = '1.6.6' + __version__ = '1.6.7' VERSION - 1.6.6 + 1.6.7 AUTHOR Gerome Fournier diff --git a/setup.py b/setup.py index 8b7aa97..2e64b79 100644 --- a/setup.py +++ b/setup.py @@ -12,14 +12,13 @@ setup( name="texttable", - version="1.6.6", + version="1.6.7", author="Gerome Fournier", author_email="jef@foutaise.org", url="https://github.com/foutaise/texttable/", - download_url="https://github.com/foutaise/texttable/archive/v1.6.6.tar.gz", + download_url="https://github.com/foutaise/texttable/archive/v1.6.7.tar.gz", license="MIT", py_modules=["texttable"], - data_files=[('stub', ['texttable.pyi'])], description=DESCRIPTION, long_description=LONG_DESCRIPTION, long_description_content_type="text/markdown", diff --git a/texttable.py b/texttable.py index 362df71..0250895 100644 --- a/texttable.py +++ b/texttable.py @@ -63,7 +63,7 @@ __author__ = 'Gerome Fournier ' __license__ = 'MIT' -__version__ = '1.6.6' +__version__ = '1.6.7' __credits__ = """\ Jeff Kowalczyk: - textwrap improved import