File tree Expand file tree Collapse file tree 4 files changed +9
-5
lines changed
Expand file tree Collapse file tree 4 files changed +9
-5
lines changed Original file line number Diff line number Diff line change 1818 - name : Set up Python
1919 uses : actions/setup-python@v5
2020 with :
21- python-version : 3.8
21+ python-version : " 3.11 "
2222 - name : Install dependencies
2323 run : |
2424 python -m pip install --upgrade pip pre-commit
4545 uses : actions/checkout@v4
4646 - uses : actions/setup-python@v5
4747 with :
48- python-version : 3.8
48+ python-version : " 3.11 "
4949 - name : Install dependencies
5050 run : |
5151 python -m pip install ".[docs]"
6464 - name : Set up Python
6565 uses : actions/setup-python@v5
6666 with :
67- python-version : 3.8
67+ python-version : " 3.11 "
6868 - name : Install dependencies
6969 run : |
7070 python -m pip install --upgrade -e ".[testing]"
Original file line number Diff line number Diff line change @@ -6,6 +6,7 @@ Unreleased
66----------
77
88* Upgrade to kubernetes-asyncio 31.1.0
9+ * Maintenance: Update to Python 3.11
910
10112.41.1 (2024-08-30)
1112-------------------
Original file line number Diff line number Diff line change 11# Build container
2- FROM python:3.8 -slim AS build
2+ FROM python:3.11 -slim AS build
33
44RUN mkdir -pv /src
55
@@ -14,7 +14,7 @@ RUN python -m pip install -U setuptools==70.3.0 && \
1414
1515
1616# Run container
17- FROM python:3.8 -slim
17+ FROM python:3.11 -slim
1818
1919LABEL license="Apache License 2.0" \
2020 maintainer=
"Crate.IO GmbH <[email protected] >" \
Original file line number Diff line number Diff line change @@ -88,6 +88,9 @@ def read(path: str) -> str:
8888 "License :: OSI Approved :: Apache Software License" ,
8989 "Programming Language :: Python :: 3" ,
9090 "Programming Language :: Python :: 3.8" ,
91+ "Programming Language :: Python :: 3.9" ,
92+ "Programming Language :: Python :: 3.10" ,
93+ "Programming Language :: Python :: 3.11" ,
9194 ],
9295 use_scm_version = True ,
9396)
You can’t perform that action at this time.
0 commit comments