Skip to content

Commit

Permalink
matplotlib unpun
Browse files Browse the repository at this point in the history
Signed-off-by: zethson <[email protected]>
  • Loading branch information
Zethson committed Feb 27, 2024
1 parent 5d48f3a commit d00710d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
3 changes: 2 additions & 1 deletion panpipes/funcs/plotting.py
Original file line number Diff line number Diff line change
Expand Up @@ -310,8 +310,9 @@ def ridgeplot(adata, features, layer=None, splitplot=3, bandwidth=0.1):
ax.yaxis.set_tick_params(labelleft=True)
ax.set_yticks(np.arange(len(features_sub)))
ax.set_yticklabels(features_sub)
for tick in ax.get_yticklabels():
tick.set_fontsize(10)
for tick in ax.yaxis.get_major_ticks():
tick.label.set_fontsize(10)
tick.label.set_verticalalignment("bottom")

fig.tight_layout()
Expand Down
1 change: 0 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,6 @@ dependencies = [
"scrublet",
"scvi-tools>=1.1.1",
"sqlalchemy",
"matplotlib<=3.7.3" # pin to be removed in the future
]

[project.optional-dependencies]
Expand Down

0 comments on commit d00710d

Please sign in to comment.