Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 8fe07ba + d087011 commit 614226eCopy full SHA for 614226e
CHANGELOG.rst
@@ -14,6 +14,7 @@ version develop
14
installation possible.
15
+ Fix a bug where bytes were copied in the wrong order on big endian
16
architectures. Fixes test failures on s390x.
17
++ Enable building on GNU/Hurd platforms.
18
19
version 1.7.1
20
-----------------
setup.py
@@ -26,6 +26,7 @@
26
sys.platform.startswith("netbsd"))
27
SYSTEM_IS_UNIX = (sys.platform.startswith("linux") or
28
sys.platform.startswith("darwin") or
29
+ sys.platform.startswith("gnu") or
30
SYSTEM_IS_BSD)
31
SYSTEM_IS_WINDOWS = sys.platform.startswith("win")
32
0 commit comments