File tree Expand file tree Collapse file tree 5 files changed +9
-7
lines changed Expand file tree Collapse file tree 5 files changed +9
-7
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.8
22
+ python-version : " 3.10 "
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.8
49
+ python-version : " 3.10 "
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.8
68
+ python-version : " 3.10 "
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 2
2
build :
3
3
os : " ubuntu-22.04"
4
4
tools :
5
- python : " 3.9 "
5
+ python : " 3.10 "
6
6
7
7
python :
8
8
install :
Original file line number Diff line number Diff line change 1
1
# Build container
2
- FROM python:3.8 -slim AS build
2
+ FROM python:3.10 -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.8 -slim
17
+ FROM python:3.10 -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 78
78
"bitmath" : ("https://bitmath.readthedocs.io/en/stable/" , None ),
79
79
"cratedb" : ("https://crate.io/docs/crate/reference/en/stable/" , None ),
80
80
"kopf" : ("https://kopf.readthedocs.io/en/stable/" , None ),
81
- "python" : ("https://docs.python.org/3.8 /" , None ),
81
+ "python" : ("https://docs.python.org/3.10 /" , None ),
82
82
}
83
83
always_document_param_types = True
Original file line number Diff line number Diff line change @@ -85,6 +85,8 @@ def read(path: str) -> str:
85
85
"License :: OSI Approved :: Apache Software License" ,
86
86
"Programming Language :: Python :: 3" ,
87
87
"Programming Language :: Python :: 3.8" ,
88
+ "Programming Language :: Python :: 3.9" ,
89
+ "Programming Language :: Python :: 3.10" ,
88
90
],
89
91
use_scm_version = True ,
90
92
)
You can’t perform that action at this time.
0 commit comments