Skip to content

Commit 65c8fc7

Browse files
committed
Add Py3 classifiers (#29).
1 parent b9b07ab commit 65c8fc7

File tree

3 files changed

+11
-6
lines changed

3 files changed

+11
-6
lines changed

CHANGES.rst

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@
33
Change Log
44
==========
55

6+
Release 0.4.3.2 - (September 17, 2018)
7+
--------------------------------------
8+
* Update classifiers to list Py3 support (#29).
9+
610
Release 0.4.3.1 - (July 11, 2018)
711
---------------------------------
812
* Switch to numpy.frombuffer to avoid deprecation warning (#27).

README.rst

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,6 @@ native complex data types is also supported.
1414
.. image:: https://img.shields.io/pypi/v/msgpack-numpy.svg
1515
:target: https://pypi.python.org/pypi/msgpack-numpy
1616
:alt: Latest Version
17-
.. Uncomment after pypi is migrated to warehouse and stats are re-enabled:
18-
.. https://github.com/badges/shields/issues/716
19-
.. .. image:: https://img.shields.io/pypi/dm/msgpack-numpy.svg
20-
:target: https://pypi.python.org/pypi/msgpack-numpy
21-
:alt: Downloads
2217

2318
Installation
2419
------------

setup.py

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
from setuptools import setup
77

88
NAME = 'msgpack-numpy'
9-
VERSION = '0.4.3.1'
9+
VERSION = '0.4.3.2'
1010
AUTHOR = 'Lev E. Givon'
1111
AUTHOR_EMAIL = 'lev@columbia.edu'
1212
URL = 'https://github.com/lebedov/msgpack-numpy'
@@ -23,6 +23,12 @@
2323
'License :: OSI Approved :: BSD License',
2424
'Operating System :: OS Independent',
2525
'Programming Language :: Python',
26+
'Programming Language :: Python :: 2.7',
27+
'Programming Language :: Python :: 3',
28+
'Programming Language :: Python :: 3.4',
29+
'Programming Language :: Python :: 3.5',
30+
'Programming Language :: Python :: 3.6',
31+
'Programming Language :: Python :: 3.7',
2632
'Topic :: Scientific/Engineering',
2733
'Topic :: Software Development']
2834

0 commit comments

Comments
 (0)