Require python 3.12
Probably not strictly necessary but I don't want to test with many versions.
This commit is contained in:
parent
4392363996
commit
243ec771de
3 changed files with 3 additions and 2 deletions
2
.github/workflows/ci.yml
vendored
2
.github/workflows/ci.yml
vendored
|
|
@ -10,7 +10,7 @@ jobs:
|
|||
runs-on: ubuntu-latest
|
||||
strategy:
|
||||
matrix:
|
||||
python-version: [ "3.10", "3.11" ]
|
||||
python-version: ["3.12"]
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- uses: actions/setup-python@v2
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
FROM python:3.10
|
||||
FROM python:3.12
|
||||
|
||||
LABEL maintainer="Stéphane Bidoul"
|
||||
|
||||
|
|
|
|||
|
|
@ -20,6 +20,7 @@ dependencies = [
|
|||
"sse-starlette",
|
||||
"uvicorn",
|
||||
]
|
||||
requires-python = "==3.12.*"
|
||||
dynamic = ["version", "description"]
|
||||
|
||||
[project.optional-dependencies]
|
||||
|
|
|
|||
Loading…
Reference in a new issue