Skip to content

Commit 5aaa23a

Browse files
committed
Fix import issue
1 parent 7da0be5 commit 5aaa23a

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

CHANGES.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# ColorHelper
22

3+
## 6.0.1
4+
5+
- **FIX**: Fix absolute import reference that should have been relative.
6+
37
## 6.0.0
48

59
> **WARNING**: We finally made it to a stable `coloraide` 1.x.x release,

lib/coloraide/interpolate/bspline_natural.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
from .. interpolate import Interpolate, Interpolator
77
from functools import lru_cache
88
from .bspline import InterpolatorBSpline
9-
from coloraide import algebra as alg
9+
from .. import algebra as alg
1010
from ..types import Vector, Matrix
1111
from typing import List, Sequence, Any, Optional, Union, Mapping, Callable, Dict, Type, TYPE_CHECKING
1212

support.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
import webbrowser
66
import re
77

8-
__version__ = "6.0.0"
8+
__version__ = "6.0.1"
99
__pc_name__ = 'ColorHelper'
1010

1111
CSS = '''

0 commit comments

Comments
 (0)