Skip to content

Commit

Permalink
0.2.2: fix bug, unpin scikit-image
Browse files Browse the repository at this point in the history
  • Loading branch information
dantasse committed Dec 8, 2021
1 parent a335717 commit 2813433
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion colornamer/colornamer.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ def _get_color_data():
]
)
return {
"lab_values": rgb2lab([rgb_values]),
"lab_values": rgb2lab(rgb_values),
"xkcd_names": [c["xkcd_color"] for c in color_json],
"color_hierarchy": {c["xkcd_color"]: c for c in color_json},
}
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

setup(
name="colornamer",
version="0.2.1",
version="0.2.2",
description="Given a color, return a hierarchy of names.",
long_description="Turns an RGB or LAB point into a hierarchical list of "
"names: color family, common color, design color, and xkcd color, as "
Expand All @@ -13,7 +13,7 @@
url="https://github.com/stitchfix/colornamer",
packages=find_packages(),
package_data={"static": ["color_hierarchy.json", "color_hierarchy.csv"],},
install_requires=["importlib_resources", "numpy", "scikit-image==0.17.2",],
install_requires=["importlib_resources", "numpy", "scikit-image",],
python_requires=">=3.6",
author="Dan Tasse",
author_email="[email protected]"
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist = py36,py37
envlist = py36,py37,py38

[testenv]
# install pytest in the virtualenv where commands will be executed
Expand Down

0 comments on commit 2813433

Please sign in to comment.