File tree 3 files changed +9
-6
lines changed
3 files changed +9
-6
lines changed Original file line number Diff line number Diff line change 19
19
- name : Set up Python
20
20
uses : actions/setup-python@v5
21
21
with :
22
- python-version : " 3.10 "
22
+ python-version : " 3.11 "
23
23
- name : Install dependencies
24
24
run : |
25
25
python -m pip install --upgrade pip pre-commit
46
46
uses : actions/checkout@v4
47
47
- uses : actions/setup-python@v5
48
48
with :
49
- python-version : " 3.10 "
49
+ python-version : " 3.11 "
50
50
- name : Install dependencies
51
51
run : |
52
52
python -m pip install ".[docs]"
65
65
- name : Set up Python
66
66
uses : actions/setup-python@v5
67
67
with :
68
- python-version : " 3.10 "
68
+ python-version : " 3.11 "
69
69
- name : Install dependencies
70
70
run : |
71
71
python -m pip install --upgrade -e ".[testing]"
Original file line number Diff line number Diff line change 1
1
# Build container
2
- FROM python:3.10 -slim AS build
2
+ FROM python:3.11 -slim AS build
3
3
4
4
RUN mkdir -pv /src
5
5
@@ -14,7 +14,7 @@ RUN python -m pip install -U setuptools==70.3.0 && \
14
14
15
15
16
16
# Run container
17
- FROM python:3.10 -slim
17
+ FROM python:3.11 -slim
18
18
19
19
LABEL license="Apache License 2.0" \
20
20
maintainer=
"Crate.IO GmbH <[email protected] >" \
Original file line number Diff line number Diff line change @@ -51,7 +51,7 @@ def read(path: str) -> str:
51
51
install_requires = [
52
52
"aiopg==1.4.0" ,
53
53
"bitmath==1.3.3.1" ,
54
- "kopf==1.35.6 " ,
54
+ "kopf==1.36.2 " ,
55
55
"kubernetes-asyncio==31.1.0" ,
56
56
"PyYAML<7.0" ,
57
57
"prometheus_client==0.21.1" ,
@@ -85,7 +85,10 @@ def read(path: str) -> str:
85
85
"Development Status :: 5 - Production/Stable" ,
86
86
"License :: OSI Approved :: Apache Software License" ,
87
87
"Programming Language :: Python :: 3" ,
88
+ "Programming Language :: Python :: 3.8" ,
89
+ "Programming Language :: Python :: 3.9" ,
88
90
"Programming Language :: Python :: 3.10" ,
91
+ "Programming Language :: Python :: 3.11" ,
89
92
],
90
93
use_scm_version = True ,
91
94
)
You can’t perform that action at this time.
0 commit comments