Skip to content

Commit

Permalink
Add support for Python 3.10 and 3.11, drop support for 3.8 (#88)
Browse files Browse the repository at this point in the history
  • Loading branch information
gregorybchris authored Sep 21, 2023
1 parent 4aff352 commit 44d0186
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@ jobs:
strategy:
matrix:
python-version:
- "3.8"
- "3.9"
- "3.10"
- "3.11"

steps:
- uses: actions/checkout@v2
Expand Down Expand Up @@ -87,10 +87,10 @@ jobs:
steps:
- uses: actions/checkout@v2

- name: Python 3.8 Setup
- name: Python 3.10 Setup
uses: actions/setup-python@v2
with:
python-version: "3.8"
python-version: "3.10"

- name: Install Python dependencies
shell: bash
Expand Down
2 changes: 1 addition & 1 deletion docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

## Requirements

Python versions 3.8 and 3.9 are supported
Python versions 3.9, 3.10, and 3.11 are supported

## Installation

Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@ authors = ["Hume AI Dev <dev@hume.ai>"]
classifiers = [
"Development Status :: 4 - Beta",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
]
description = "Hume AI Python Client"
keywords = [
Expand All @@ -25,7 +25,7 @@ license = "Proprietary"
name = "hume"
readme = "README.md"
repository = "https://github.com/HumeAI/hume-python-sdk"
version = "0.3.7"
version = "0.4.0"

[tool.poetry.dependencies]
python = ">=3.8.1,<4"
Expand Down

0 comments on commit 44d0186

Please sign in to comment.