Skip to content

Commit bf8f2ee

Browse files
committed
Properly include typing information in distributions.
1 parent 36bef7b commit bf8f2ee

5 files changed

Lines changed: 10 additions & 2 deletions

File tree

CHANGES.rst

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
11
CHANGES
22
=======
33

4+
1.23.1 (2022-10-02)
5+
-------------------
6+
7+
- Include typing information in PyPI and source distributions.
8+
49
1.23.0 (2021-01-29)
510
-------------------
611

MANIFEST.in

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,3 @@
1-
include *.rst
1+
include *.rst
2+
include *.typed
3+
include *.pyi

git_archive_all.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
import sys
3333
import re
3434

35-
__version__ = "1.23.0"
35+
__version__ = "1.23.1"
3636

3737

3838
try:

py.typed

Whitespace-only changes.

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@ def run_tests(self):
3434
setup(
3535
version=verstr,
3636
py_modules=['git_archive_all'],
37+
package_data={'git_archive_all': ['py.typed', '*.pyi']},
3738
entry_points={'console_scripts': 'git-archive-all=git_archive_all:main'},
3839
cmdclass={"test": PyTest},
3940
)

0 commit comments

Comments
 (0)