Skip to content

Commit

Permalink
crc32c 1.4
Browse files Browse the repository at this point in the history
This version supports Windows builds via the Visual Studio compiler. To
ensure this is indeed working we have added both a set of unit tests,
and AppVeyor/Travis build scripts.

This version also drops the old consumption method, which
read/crc'd/wrote in a tight loop. This was always an experimental
feature so there is no harm on taking it out.

Signed-off-by: Rodrigo Tobar <[email protected]>
  • Loading branch information
rtobar committed Jul 17, 2018
1 parent a2c5191 commit 24c99d3
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ Because ``crc32c`` is in PyPI, you can install it with::

pip install crc32c

Supported platforms are Linux and OSX using the gcc and clang compilers.
Compilation using the Visual Studio compiler fails, but other compilers in
Supported platforms are Linux and OSX using the gcc and clang compilers,
and Windows using the Visual Studio compiler. Other compilers in
Windows (MinGW for instance) might work.

If your CPU doesn't support this instruction, the package will fail to load
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
author='The ICRAR DIA Team',
url='https://github.com/ICRAR/crc32c',
author_email='[email protected]',
version='1.3',
version='1.4',
license="LGPLv2.1+",
description='A python package exposing the Intel SSE4.2 CRC32C instruction',
classifiers=classifiers,
Expand Down

0 comments on commit 24c99d3

Please sign in to comment.