Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion chardet/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
# 02110-1301 USA
######################### END LICENSE BLOCK #########################

__version__ = "1.0.1"
__version__ = "1.0.3"

def detect(aBuf):
import universaldetector
Expand Down
4 changes: 3 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,11 @@
if not hasattr(DistributionMetadata, 'download_url'):
DistributionMetadata.download_url = None

import chardet

setup(
name = 'chardet',
version = '1.0.3',
version = chardet.__version__,
description = 'Universal encoding detector',
long_description = """\
Universal character encoding detector
Expand Down