Skip to content

Commit d6ace8a

Browse files
authored
Update release (#102)
1 parent 89e56f6 commit d6ace8a

File tree

5 files changed

+14
-9
lines changed

5 files changed

+14
-9
lines changed

.github/workflows/build_test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818

1919
strategy:
2020
matrix:
21-
python-version: ['2.7', '3.5', '3.6', '3.7', '3.8', '3.9', '3.10']
21+
python-version: [ '3.8', '3.9', '3.10', '3.11' ]
2222

2323
steps:
2424
- uses: actions/checkout@v2

HISTORY.rst

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,4 +104,9 @@ History
104104

105105
2.17.0
106106
------------------
107-
* Add language to the streaming client
107+
* Add language to the streaming client
108+
109+
2.18.0
110+
------------------
111+
* Add atmospherics and speaker_count support
112+
* Deprecated support for Python versions up to 3.8

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ Install from source with:
2020

2121
### Requirements
2222

23-
- Python 2.7+ or Python 3.4+
23+
- Python 3.8+
2424

2525
## Usage
2626

src/rev_ai/apiclient.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -113,8 +113,8 @@ def submit_job_url(
113113
invoke on job completion as a webhook and optional authentication headers to use when
114114
calling the callback url
115115
:param skip_postprocessing: skip all text postprocessing (punctuation, capitalization, ITN)
116-
:param remove_atmospherics: Atmospherics such as <laugh>, <affirmative>, etc. will not appear
117-
in the transcript.
116+
:param remove_atmospherics: Atmospherics such as <laugh>, <affirmative>, etc. will not
117+
appear in the transcript.
118118
:param speakers_count: Use to specify the total number of unique speakers in the audio.
119119
:returns: raw response data
120120
:raises: HTTPError
@@ -205,8 +205,8 @@ def submit_job_local_file(
205205
invoke on job completion as a webhook and optional authentication headers to use when
206206
calling the callback url
207207
:param skip_postprocessing: skip all text postprocessing (punctuation, capitalization, ITN)
208-
:param remove_atmospherics: Atmospherics such as <laugh>, <affirmative>, etc. will not appear
209-
in the transcript.
208+
:param remove_atmospherics: Atmospherics such as <laugh>, <affirmative>, etc. will not
209+
appear in the transcript.
210210
:param speakers_count: Use to specify the total number of unique speakers in the audio.
211211
:returns: raw response data
212212
:raises: HTTPError, ValueError

src/rev_ai/models/asynchronous/job.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,8 +56,8 @@ def __init__(
5656
:param verbatim: whether to transcribe verbatim if provided for human transcription
5757
:param rush: whether to transcribe with rush if provided for human transcription
5858
:param segments_to_transcribe: segments to transcribe if provided for human transcription
59-
:param remove_atmospherics: Atmospherics such as <laugh>, <affirmative>, etc. will not appear
60-
in the transcript.
59+
:param remove_atmospherics: Atmospherics such as <laugh>, <affirmative>, etc. will noT
60+
appear in the transcript.
6161
:param speakers_count: Use to specify the total number of unique speakers in the audio.
6262
"""
6363
self.id = id_

0 commit comments

Comments
 (0)