File tree 4 files changed +10
-5
lines changed
4 files changed +10
-5
lines changed Original file line number Diff line number Diff line change 18
18
- name : Set up Python
19
19
uses : actions/setup-python@v4
20
20
with :
21
- python-version : 3.8
21
+ python-version : " 3.11 "
22
22
- name : Install dependencies
23
23
run : |
24
24
python -m pip install --upgrade pip pre-commit
45
45
uses : actions/checkout@v3
46
46
- uses : actions/setup-python@v4
47
47
with :
48
- python-version : 3.8
48
+ python-version : " 3.11 "
49
49
- name : Install dependencies
50
50
run : |
51
51
python -m pip install ".[docs]"
64
64
- name : Set up Python
65
65
uses : actions/setup-python@v4
66
66
with :
67
- python-version : 3.8
67
+ python-version : " 3.11 "
68
68
- name : Install dependencies
69
69
run : |
70
70
python -m pip install --upgrade -e ".[testing]"
Original file line number Diff line number Diff line change @@ -5,6 +5,8 @@ Changelog
5
5
Unreleased
6
6
----------
7
7
8
+ * Maintenance: Update to Python 3.11
9
+
8
10
2.39.0 (2024-05-22)
9
11
-------------------
10
12
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.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==65.5.1 && \
14
14
15
15
16
16
# Run container
17
- FROM python:3.8 -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 @@ -90,6 +90,9 @@ def read(path: str) -> str:
90
90
"License :: OSI Approved :: Apache Software License" ,
91
91
"Programming Language :: Python :: 3" ,
92
92
"Programming Language :: Python :: 3.8" ,
93
+ "Programming Language :: Python :: 3.9" ,
94
+ "Programming Language :: Python :: 3.10" ,
95
+ "Programming Language :: Python :: 3.11" ,
93
96
],
94
97
use_scm_version = True ,
95
98
)
You can’t perform that action at this time.
0 commit comments