Skip to content

Commit

Permalink
New: v0.0.4
Browse files Browse the repository at this point in the history
  • Loading branch information
Anatoliy Bilenko authored and Anatoliy Bilenko committed Nov 7, 2024
1 parent aabc60d commit 122e4cc
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion chronoscope/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
import errno
import sys

__version__ = '0.0.3'
__version__ = '0.0.4'
__author__ = 'Anatoliy Bilenko <[email protected]>'
__license__ = 'LGPLv3'

Expand Down
2 changes: 1 addition & 1 deletion chronoscope/chart.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ def plot_timeline(timeline, y_pos: int):
event_label = current_tick["event"]

pt.hlines(y_pos_scaled, start_time, end_time, lw=4,
colors=cm.tab10(current) % 7) # type: ignore[attr-defined]
colors=cm.tab10(current % 7)) # type: ignore[attr-defined]
pt.text(start_time, y_pos_scaled, event_label, rotation=90)

if len(timeline[:]) == 1:
Expand Down
2 changes: 1 addition & 1 deletion system-test
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ cmd_mkdb() {
cd test/
python3 -m venv ".env"
source ".env/bin/activate"
pip3 install ../dist/Chronoscope-0.0.3-py3-none-any.whl
pip3 install ../dist/Chronoscope-0.0.4-py3-none-any.whl
deactivate
.env/bin/chronoscope create --trace trace.txt
cd -
Expand Down

0 comments on commit 122e4cc

Please sign in to comment.