File tree Expand file tree Collapse file tree 3 files changed +11
-6
lines changed Expand file tree Collapse file tree 3 files changed +11
-6
lines changed Original file line number Diff line number Diff line change 3
3
Change Log
4
4
==========
5
5
6
+ Release 0.4.3.2 - (September 17, 2018)
7
+ --------------------------------------
8
+ * Update classifiers to list Py3 support (#29).
9
+
6
10
Release 0.4.3.1 - (July 11, 2018)
7
11
---------------------------------
8
12
* Switch to numpy.frombuffer to avoid deprecation warning (#27).
Original file line number Diff line number Diff line change @@ -14,11 +14,6 @@ native complex data types is also supported.
14
14
.. image :: https://img.shields.io/pypi/v/msgpack-numpy.svg
15
15
:target: https://pypi.python.org/pypi/msgpack-numpy
16
16
: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
22
17
23
18
Installation
24
19
------------
Original file line number Diff line number Diff line change 6
6
from setuptools import setup
7
7
8
8
NAME = 'msgpack-numpy'
9
- VERSION = '0.4.3.1 '
9
+ VERSION = '0.4.3.2 '
10
10
AUTHOR = 'Lev E. Givon'
11
11
AUTHOR_EMAIL = 'lev@columbia.edu'
12
12
URL = 'https://github.com/lebedov/msgpack-numpy'
23
23
'License :: OSI Approved :: BSD License' ,
24
24
'Operating System :: OS Independent' ,
25
25
'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' ,
26
32
'Topic :: Scientific/Engineering' ,
27
33
'Topic :: Software Development' ]
28
34
You can’t perform that action at this time.
0 commit comments