Skip to content

Commit 797e347

Browse files
committed
FIX: 1.17.1
1 parent 4d0d484 commit 797e347

File tree

3 files changed

+11
-2
lines changed

3 files changed

+11
-2
lines changed

MANIFEST.in

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
include codespell_lib/__init__.py
22
recursive-include codespell_lib *.py
3-
include codespell_lib/data/dictionary.txt
3+
include codespell_lib/data/dictionary*.txt
44
include codespell_lib/data/linux-kernel.exclude
55
include COPYING
6+
include bin/codespell
7+
exclude *.yml *.yaml
8+
exclude .coveragerc
9+
exclude example example/* snap snap/* tools tools/*
10+
exclude Makefile
11+
exclude codespell.1.include

Makefile

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,9 @@ trim-dictionaries:
3939
sed -E -i.bak -e 's/^[[:space:]]+//; s/[[:space:]]+$$//; /^$$/d' $$dictionary && rm $$dictionary.bak; \
4040
done
4141

42+
check-manifest:
43+
check-manifest
44+
4245
pypi:
4346
python setup.py sdist register upload
4447

codespell_lib/_codespell.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
USAGE = """
3232
\t%prog [OPTIONS] [file1 file2 ... fileN]
3333
"""
34-
VERSION = '1.17.0'
34+
VERSION = '1.17.1'
3535

3636
# Users might want to link this file into /usr/local/bin, so we resolve the
3737
# symbolic link path to the real path if necessary.

0 commit comments

Comments
 (0)