Skip to content

Commit

Permalink
Updated matplotlib to 3.9.0 due to seaborn dependency issue
Browse files Browse the repository at this point in the history
import seaborn as sns
File "/opt/venv/lib/python3.10/site-packages/seaborn/__init__.py", line 9, in <module>
from .matrix import * # noqa: F401,F403
File "/opt/venv/lib/python3.10/site-packages/seaborn/matrix.py", line 12, in <module>
from . import cm
File "/opt/venv/lib/python3.10/site-packages/seaborn/cm.py", line 1582, in <module>
mpl_cm.register_cmap(_name, _cmap)
AttributeError: module 'matplotlib.cm' has no attribute 'register_cmap'
  • Loading branch information
CodingBash committed Jun 14, 2024
1 parent d90d946 commit 14a64f9
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,4 @@ ENV PATH="${VENV}/bin:$PATH"

# Install from PyPI
RUN pip install --upgrade pip
RUN pip install crispr-ambiguous-mapping==0.0.153
RUN pip install crispr-ambiguous-mapping==0.0.154
Binary file not shown.
Binary file not shown.
4 changes: 2 additions & 2 deletions crispr-ambiguous-mapping/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "crispr-ambiguous-mapping"
version = "0.0.153"
version = "0.0.154"
description = ""
authors = ["Basheer Becerra <[email protected]>"]
readme = "README.md"
Expand All @@ -10,7 +10,7 @@ packages = [{include = "crispr_ambiguous_mapping"}]
python = ">=3.8,<3.12"
numpy = "^1.24.4"
scipy = "^1.10.1"
matplotlib = "^3.7.1"
matplotlib = "3.9.0"
biopython = "^1.81"
pandarallel = "^1.6.4"
typeguard = "^3.0.2"
Expand Down

0 comments on commit 14a64f9

Please sign in to comment.