File tree 6 files changed +15
-14
lines changed
6 files changed +15
-14
lines changed Original file line number Diff line number Diff line change 26
26
- name : Set up Python
27
27
uses : actions/setup-python@v4.3.0
28
28
with :
29
- python-version : " 3.10 "
29
+ python-version : " 3.11 "
30
30
- name : Install dependencies
31
31
run : pip install tox
32
32
- name : Build docs
46
46
- name : Set up Python
47
47
uses : actions/setup-python@v4.3.0
48
48
with :
49
- python-version : " 3.10 "
49
+ python-version : " 3.11 "
50
50
- name : Install dependencies
51
51
run : pip install tox twine wheel
52
52
- name : Check twine readme rendering
Original file line number Diff line number Diff line change 27
27
fetch-depth : 0
28
28
- uses : actions/setup-python@v4.3.0
29
29
with :
30
- python-version : " 3.10 "
30
+ python-version : " 3.11 "
31
31
- run : pip install --upgrade tox
32
32
- name : Run commitizen (https://commitizen-tools.github.io/commitizen/)
33
33
run : tox -e cz
Original file line number Diff line number Diff line change 32
32
- uses : actions/checkout@v3.1.0
33
33
- uses : actions/setup-python@v4.3.0
34
34
with :
35
- python-version : " 3.10 "
35
+ python-version : " 3.11 "
36
36
- name : install tox
37
37
run : pip install tox==3.26.0
38
38
- name : pre-commit
Original file line number Diff line number Diff line change @@ -26,23 +26,23 @@ jobs:
26
26
os : [ubuntu-latest]
27
27
python :
28
28
- version : " 3.7"
29
- toxenv : py37
29
+ toxenv : py37,smoke
30
30
- version : " 3.8"
31
- toxenv : py38
31
+ toxenv : py38,smoke
32
32
- version : " 3.9"
33
- toxenv : py39
33
+ toxenv : py39,smoke
34
34
- version : " 3.10"
35
35
toxenv : py310,smoke
36
- - version : ' 3.11.0-alpha - 3.11 ' # SemVer's version range syntax
36
+ - version : " 3.11"
37
37
toxenv : py311,smoke
38
38
include :
39
39
- os : macos-latest
40
40
python :
41
- version : " 3.10 "
41
+ version : " 3.11 "
42
42
toxenv : py310,smoke
43
43
- os : windows-latest
44
44
python :
45
- version : " 3.10 "
45
+ version : " 3.11 "
46
46
toxenv : py310,smoke
47
47
steps :
48
48
- uses : actions/checkout@v3.1.0
67
67
- name : Set up Python
68
68
uses : actions/setup-python@v4.3.0
69
69
with :
70
- python-version : " 3.10 "
70
+ python-version : " 3.11 "
71
71
- name : Install dependencies
72
72
run : pip install tox
73
73
- name : Run tests
88
88
- name : Set up Python ${{ matrix.python-version }}
89
89
uses : actions/setup-python@v4.3.0
90
90
with :
91
- python-version : " 3.10 "
91
+ python-version : " 3.11 "
92
92
- name : Install dependencies
93
93
run : pip install tox
94
94
- name : Run tests
Original file line number Diff line number Diff line change 1
1
ARG PYTHON_FLAVOR=alpine
2
- FROM python:3.10 -${PYTHON_FLAVOR} AS build
2
+ FROM python:3.11 -${PYTHON_FLAVOR} AS build
3
3
4
4
WORKDIR /opt/python-gitlab
5
5
COPY . .
6
6
RUN python setup.py bdist_wheel
7
7
8
- FROM python:3.10 -${PYTHON_FLAVOR}
8
+ FROM python:3.11 -${PYTHON_FLAVOR}
9
9
10
10
WORKDIR /opt/python-gitlab
11
11
COPY --from=build /opt/python-gitlab/dist dist/
Original file line number Diff line number Diff line change @@ -48,6 +48,7 @@ def get_version() -> str:
48
48
"Programming Language :: Python :: 3.8" ,
49
49
"Programming Language :: Python :: 3.9" ,
50
50
"Programming Language :: Python :: 3.10" ,
51
+ "Programming Language :: Python :: 3.11" ,
51
52
],
52
53
extras_require = {
53
54
"autocompletion" : ["argcomplete>=1.10.0,<3" ],
You can’t perform that action at this time.
0 commit comments