Skip to content

Commit

Permalink
support 3.8
Browse files Browse the repository at this point in the history
  • Loading branch information
jxnl committed Jul 22, 2023
1 parent 80f0cd9 commit b68517c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,15 @@ name: Test
on:
push:
pull_request:
branches: [ main ]
branches: [main]

jobs:
release:
runs-on: ubuntu-latest

strategy:
matrix:
python-version: ['3.9', '3.10', '3.11']
python-version: ["3.8", "3.9", "3.10", "3.11"]

steps:
- uses: actions/checkout@v2
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "openai-function-call"
version = "0.2.0"
version = "0.2.1"
description = "Helper functions that allow us to improve openai's function_call ergonomics"
authors = ["Jason <[email protected]>"]
license = "MIT"
Expand All @@ -9,7 +9,7 @@ packages = [{include = "openai_function_call"}]
repository = "https://github.com/jxnl/openai_function_call"

[tool.poetry.dependencies]
python = "^3.9"
python = "^3.8"
openai = "^0.27.8"
pydantic = "^2.0.2"

Expand Down

0 comments on commit b68517c

Please sign in to comment.