We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9c494db commit 50a60aaCopy full SHA for 50a60aa
2 files changed
hsluv.py
@@ -5,7 +5,7 @@
5
haxe -cp haxe/src hsluv.Hsluv -python hsluv.py
6
"""
7
8
-__version__ = '5.0.3'
+__version__ = '5.0.4'
9
10
from functools import wraps as _wraps, partial as _partial # unexport, see #17
11
import math as _math # unexport, see #17
tests/test_hsluv.py
@@ -11,7 +11,8 @@
from hsluv import (_hsluv_to_rgb, _hpluv_to_rgb) # no normalized output
12
13
rgb_range_tolerance = 1e-11
14
-snapshot_tolerance = 1e-11
+# Note: we had 1e-11 precision before, but lowered it for FreeBSD: https://github.com/hsluv/hsluv/issues/87
15
+snapshot_tolerance = 1e-10
16
17
18
class TestHsluv(unittest.TestCase):
0 commit comments