Skip to content

Commit

Permalink
Merge pull request #58 from awslabs/310-support
Browse files Browse the repository at this point in the history
Add Python 3.10 support
  • Loading branch information
joguSD committed Oct 14, 2021
2 parents 316906c + 52e8a74 commit 27242bd
Show file tree
Hide file tree
Showing 6 changed files with 19 additions and 8 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Expand Up @@ -13,13 +13,13 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: [3.6, 3.7, 3.8, 3.9]
python-version: [3.6, 3.7, 3.8, 3.9, "3.10"]

steps:
- name: Checkout Repository
uses: actions/checkout@v1
- name: Set Up Python - ${{ matrix.python-version }}
uses: actions/setup-python@v1
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install tox
Expand Down
10 changes: 10 additions & 0 deletions CHANGES.rst
@@ -1,6 +1,16 @@
Changes
=======

Next (TBD)
------------------

* The required version of awscrt has been upgraded to 0.12.5 (#58)

* Added official support for Python 3.10 (#58)

* Allow partial results stabilization options (#54)


0.5.0 (2021-08-12)
------------------

Expand Down
6 changes: 3 additions & 3 deletions requirements-dev.txt
Expand Up @@ -2,7 +2,7 @@ black==19.10b0
flake8<3.9
mypy<1.0
pre-commit>=2.15.0
pytest<5.5
pytest-asyncio<0.15.0
pytest-cov<2.11
pytest<6.3
pytest-asyncio<0.16.0
pytest-cov<2.13
tox>2.0
2 changes: 1 addition & 1 deletion setup.cfg
Expand Up @@ -3,7 +3,7 @@ universal = 0

[metadata]
requires_dist =
awscrt==0.11.24
awscrt==0.12.5

[flake8]
# We ignore E203, E501 for this project due to black
Expand Down
3 changes: 2 additions & 1 deletion setup.py
Expand Up @@ -21,7 +21,7 @@ def find_version(*file_paths):
raise RuntimeError("Unable to find version string.")


requires = ["awscrt==0.11.24"]
requires = ["awscrt==0.12.5"]

setup(
name="amazon-transcribe",
Expand Down Expand Up @@ -50,5 +50,6 @@ def find_version(*file_paths):
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
],
)
2 changes: 1 addition & 1 deletion tox.ini
@@ -1,5 +1,5 @@
[tox]
envlist = py36,py37,py38,py39
envlist = py36,py37,py38,py39,py310

skipsdist = True

Expand Down

0 comments on commit 27242bd

Please sign in to comment.