Skip to content

Commit

Permalink
Prepare release 0.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
emunozdc authored and emunozdc committed Jun 26, 2024
1 parent 36de4be commit db60d3b
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/continuous_integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
- name: Install dependencies
run: |
# I am using the pip installed by conda, bad practice but OK in C/I I think
pip install pyranges-plot[all]==0.0.27
pip install pyranges-plot[all]==0.1.0
pip install ruff pytest
- name: Check formatting with ruff
run: |
Expand Down
2 changes: 1 addition & 1 deletion docs/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
pyranges_plot==0.0.27
pyranges_plot==0.1.0
Sphinx==7.3.7
sphinx-rtd-theme==2.0.0
sphinx-autoapi==3.0.0
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

setup(
name="pyranges_plot",
version="0.0.27",
version="0.1.0",
packages=find_packages(where="src"),
package_dir={"": "src"},
)
2 changes: 1 addition & 1 deletion src/pyranges_plot/_version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.0.27"
__version__ = "0.1.0"
2 changes: 1 addition & 1 deletion src/pyranges_plot/plotly_base/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ def show_uncol_warning(grfig):
Output("alert-iteration", "is_open"),
Input("genes-plot", "figure"),
)
def show_uncol_warning(grfig):
def show_iter_warning(grfig):
if grfig["data"][0]["customdata"][0] == "no warnings":
return False
sign = int(grfig["data"][0]["customdata"][2])
Expand Down
4 changes: 2 additions & 2 deletions src/pyranges_plot/plotly_base/fig_axes.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@
import plotly.graph_objects as go
import numpy as np
import pandas as pd
from pyranges.core.names import CHROM_COL, START_COL, END_COL
from pyranges.core.names import START_COL, END_COL
from pyranges_plot.core import cumdelting
from pyranges_plot.names import PR_INDEX_COL, ORISTART_COL, ORIEND_COL, CUM_DELTA_COL
from pyranges_plot.names import PR_INDEX_COL, CUM_DELTA_COL


def calculate_ticks(chrom_md_grouped, chrom, num_ticks=10):
Expand Down

0 comments on commit db60d3b

Please sign in to comment.