Skip to content

Commit 6136e85

Browse files
committed
Release 2.2.1
1 parent 5c3b65c commit 6136e85

File tree

6 files changed

+11
-10
lines changed

6 files changed

+11
-10
lines changed

MANIFEST.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
include AUTHORS.rst
22
include LICENSE.txt
33
include NEWS.rst
4-
include README.rst
4+
include Readme.rst

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,4 +28,4 @@ docs:
2828
make -C docs/manual html
2929

3030
wheel:
31-
$(PYTHON) -m pip wheel .
31+
$(PYTHON) -m pip wheel -w dist .

NEWS.rst

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22
IntelHex releases
33
*****************
44

5+
2.2.1 (2018-01-30)
6+
------------------
7+
* Fixes for PyPI.
8+
59
2.2 (2018-01-28)
610
----------------
711
* API changes: ``IntelHex.write_hex_file`` method: added support for new

Readme.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ restrictions.
2424

2525
Supported Python versions
2626
-------------------------
27-
Intelhex library v.2.2 supports Python 2 (2.4-2.7) and Python 3 (3.2-3.5 or later)
27+
IntelHex library v.2.2 supports Python 2 (2.4-2.7) and Python 3 (3.2-3.5 or later)
2828
without external libraries or 2to3 tool from the same codebase.
2929

3030
Install

intelhex/__version__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
# IntelHex library version information
2-
version_info = (2, 2, 0, 1)
2+
version_info = (2, 2, 1)
33
version_str = '.'.join([str(i) for i in version_info])

setup.py

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -40,10 +40,7 @@
4040

4141
import intelhex, intelhex.__version__
4242

43-
LONG_DESCRIPTION = """\
44-
45-
"""
46-
43+
LONG_DESCRIPTION = open('Readme.rst', 'r').read()
4744

4845
METADATA = dict(
4946
name='intelhex',
@@ -56,8 +53,8 @@
5653
author_email='alexander.belchenko@gmail.com',
5754
url='https://pypi.python.org/pypi/IntelHex',
5855

59-
description='Python Intel Hex library',
60-
long_description='Python Intel Hex library',
56+
description='Python library for Intel HEX files manipulations',
57+
long_description=LONG_DESCRIPTION,
6158
keywords='Intel HEX hex2bin HEX8',
6259
license='BSD',
6360
classifiers = [

0 commit comments

Comments
 (0)