Skip to content

Commit

Permalink
fixed: got the main function in recording_times_generator file.
Browse files Browse the repository at this point in the history
warning removed when users was using the command recording_times_generator from the CLI.

Updated to the pypi
  • Loading branch information
prayagnshah committed Nov 14, 2023
1 parent 10829a4 commit 4943b60
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 2 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,17 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [2.0.4] - 2023-11-14

### Fixed

- Removed the warning message of `ImportError: cannot import name 'main' from 'src.recording_times_generator'` when running the program from CLI.


## [2.0.3] - 2023-11-06

### Fixed

- Fixed the structure of argument start date and end date. i.e start-date to start_date and end-date to end_date.
- Updated the readme by including the research paper.
- Program is able to accept float values in duration and slice timing.
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

setup(
name="sound-extraction",
version="2.0.3",
version="2.0.4",
packages=["src"],
install_requires=[
"certifi>=2023.5.7",
Expand Down
2 changes: 1 addition & 1 deletion src/sound_extraction.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

sentry_sdk.init(
dsn=sentry_dsn,
release="v2.0.3",
release="v2.0.4",
# Set traces_sample_rate to 1.0 to capture 100%
# of transactions for performance monitoring.
traces_sample_rate=1.0,
Expand Down

0 comments on commit 4943b60

Please sign in to comment.