Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

New PyPI release 1.2.0 #9

Merged
merged 2 commits into from
Aug 25, 2016
Merged
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
7 changes: 7 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
1.2.0
-----

- Add LZ4 filter plugin for MacOS

- Add bitshuffle plugin decompressor for MacOS

1.1.0
-----

Expand Down
4 changes: 2 additions & 2 deletions hdf5plugin/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,9 @@
"""This module provides compiled shared libraries for their use as HDF5 plugins
under windows."""

__authors__ = ["V.A. Sole"]
__authors__ = ["V.A. Sole", "H. Payno"]
__license__ = "MIT"
__date__ = "17/08/2016"
__date__ = "25/08/2016"

import os
import sys
Expand Down
7 changes: 5 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,11 +24,11 @@
# ###########################################################################*/
__authors__ = ["V.A. Sole"]
__license__ = "MIT"
__date__ = "11/07/2016"
__date__ = "25/08/2016"

from setuptools import setup

version="1.1.0"
version="1.2.0"
name = "hdf5plugin"
author = "ESRF - Data Analysis Unit"
description = "HDF5 Plugins for windows"
Expand All @@ -37,13 +37,16 @@
f.close()
classifiers = ["Development Status :: 3 - Alpha",
"Environment :: Console",
"Environment :: MacOS X",
"Environment :: Win32 (MS Windows)",
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: MacOS",
"Operating System :: Microsoft :: Windows",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Topic :: Scientific/Engineering :: Physics",
"Topic :: Software Development :: Libraries :: Python Modules",
Expand Down