Skip to content

Commit ededfc0

Browse files
authored
AISDK-133: Relax pinned version requirements to allow for easier integration of PythonSDK (#60)
1 parent f1196b8 commit ededfc0

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

requirements.txt

+4-5
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
requests==2.21.0
2-
enum34==1.1.6
3-
six==1.12.0
4-
websocket-client==0.56.0
5-
mock==3.0.5
1+
requests>=2.21.0,<3.0.0
2+
enum34>=1.1.6,<2.0.0
3+
six>=1.12.0,<2.0.0
4+
websocket-client>=0.56.0,<1.0.0

requirements_dev.txt

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
pytest==4.6.5
22
pytest-cov==2.6.1
33
pytest-mock==1.10.0
4-
flake8==3.6.0
4+
flake8==3.6.0
5+
mock==3.0.5

setup.cfg

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 2.10.0
2+
current_version = 2.10.1
33
commit = True
44
tag = True
55

src/rev_ai/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# -*- coding: utf-8 -*-
22
"""Top-level package for rev_ai"""
33

4-
__version__ = '2.10.0'
4+
__version__ = '2.10.1'
55

66
from .models import Job, JobStatus, Account, Transcript, MediaConfig, CaptionType, CustomVocabulary

0 commit comments

Comments
 (0)