Skip to content

Commit

Permalink
Get rid of stub file in wheel package
Browse files Browse the repository at this point in the history
  • Loading branch information
foutaise committed Nov 23, 2022
1 parent 6548865 commit 834a999
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 8 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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)

Expand Down
4 changes: 2 additions & 2 deletions PKG-INFO
Original file line number Diff line number Diff line change
@@ -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: [email protected]
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
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -219,10 +219,10 @@ DATA
__author__ = 'Gerome Fournier <jef(at)foutaise.org>'
__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 <jef(at)foutaise.org>
Expand Down
5 changes: 2 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,13 @@

setup(
name="texttable",
version="1.6.6",
version="1.6.7",
author="Gerome Fournier",
author_email="[email protected]",
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",
Expand Down
2 changes: 1 addition & 1 deletion texttable.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@

__author__ = 'Gerome Fournier <jef(at)foutaise.org>'
__license__ = 'MIT'
__version__ = '1.6.6'
__version__ = '1.6.7'
__credits__ = """\
Jeff Kowalczyk:
- textwrap improved import
Expand Down

0 comments on commit 834a999

Please sign in to comment.