Skip to content

Commit

Permalink
version 0.0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
stefantaubert committed May 31, 2022
1 parent 0e6a33d commit b30a084
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
6 changes: 4 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "textgrid-tools"
version = "0.0.2"
version = "0.0.3"
description = "CLI to modify TextGrids and their corresponding audio files."
readme = "README.md"
requires-python = ">=3.6"
Expand Down Expand Up @@ -60,7 +60,9 @@ textgrid-tools-cli = "textgrid_tools_cli.cli:run_prod"
where = ["src"]
include = [
"textgrid_tools",
"textgrid_tools_cli"
"textgrid_tools.*",
"textgrid_tools_cli",
"textgrid_tools_cli.*",
]
exclude = [
"textgrid_tools_tests",
Expand Down
1 change: 0 additions & 1 deletion src/textgrid_tools/intervals/boundary_fixing.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
from typing import Iterable, Optional, Set, Tuple, cast

from textgrid.textgrid import Interval, IntervalTier, TextGrid
from tqdm import tqdm

from textgrid_tools.globals import ChangedAnything, ExecutionResult
from textgrid_tools.helper import (check_is_valid_grid, get_all_tiers,
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
from logging import getLogger
from textgrid.textgrid import Interval, IntervalTier, TextGrid

from textgrid_tools.intervals.splitting import split_intervals
Expand Down

0 comments on commit b30a084

Please sign in to comment.