Skip to content

Commit

Permalink
chore!: upgrade minimum python version from 3.9 to 3.11
Browse files Browse the repository at this point in the history
BREAKING: open-source-slack-ai will no longer work on 3.9 or 3.10
  • Loading branch information
meetbryce committed Oct 13, 2024
1 parent 73a1c10 commit 063c661
Show file tree
Hide file tree
Showing 3 changed files with 110 additions and 168 deletions.
10 changes: 4 additions & 6 deletions .github/workflows/python-app.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,16 +5,15 @@ name: Python application

on:
push:
branches: [ "main" ]
branches: ["main"]
pull_request:
branches: [ "main" ]
branches: ["main"]

permissions:
contents: read

jobs:
build:

runs-on: ubuntu-latest
env:
DEBUG: True
Expand All @@ -26,10 +25,10 @@ jobs:

steps:
- uses: actions/checkout@v3
- name: Set up Python 3.10
- name: Set up Python 3.11
uses: actions/setup-python@v3
with:
python-version: "3.10"
python-version: "3.11"
- name: Poetry Install
uses: knowsuchagency/poetry-install@v2
env:
Expand All @@ -50,4 +49,3 @@ jobs:
coverageCommand: poetry run coverage xml
env:
CC_TEST_REPORTER_ID: ${{secrets.CC_TEST_REPORTER_ID}}

Loading

0 comments on commit 063c661

Please sign in to comment.