Skip to content

Commit 44d0186

Browse files
Add support for Python 3.10 and 3.11, drop support for 3.8 (#88)
1 parent 4aff352 commit 44d0186

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

.github/workflows/ci.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@ jobs:
1515
strategy:
1616
matrix:
1717
python-version:
18-
- "3.8"
1918
- "3.9"
2019
- "3.10"
20+
- "3.11"
2121

2222
steps:
2323
- uses: actions/checkout@v2
@@ -87,10 +87,10 @@ jobs:
8787
steps:
8888
- uses: actions/checkout@v2
8989

90-
- name: Python 3.8 Setup
90+
- name: Python 3.10 Setup
9191
uses: actions/setup-python@v2
9292
with:
93-
python-version: "3.8"
93+
python-version: "3.10"
9494

9595
- name: Install Python dependencies
9696
shell: bash

docs/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
## Requirements
44

5-
Python versions 3.8 and 3.9 are supported
5+
Python versions 3.9, 3.10, and 3.11 are supported
66

77
## Installation
88

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@ authors = ["Hume AI Dev <dev@hume.ai>"]
33
classifiers = [
44
"Development Status :: 4 - Beta",
55
"Operating System :: OS Independent",
6-
"Programming Language :: Python :: 3.8",
76
"Programming Language :: Python :: 3.9",
87
"Programming Language :: Python :: 3.10",
8+
"Programming Language :: Python :: 3.11",
99
]
1010
description = "Hume AI Python Client"
1111
keywords = [
@@ -25,7 +25,7 @@ license = "Proprietary"
2525
name = "hume"
2626
readme = "README.md"
2727
repository = "https://github.com/HumeAI/hume-python-sdk"
28-
version = "0.3.7"
28+
version = "0.4.0"
2929

3030
[tool.poetry.dependencies]
3131
python = ">=3.8.1,<4"

0 commit comments

Comments
 (0)