File tree Expand file tree Collapse file tree 6 files changed +15
-14
lines changed
Expand file tree Collapse file tree 6 files changed +15
-14
lines changed Original file line number Diff line number Diff line change 2626 - name : Set up Python
2727 uses : actions/setup-python@v4.3.0
2828 with :
29- python-version : " 3.10 "
29+ python-version : " 3.11 "
3030 - name : Install dependencies
3131 run : pip install tox
3232 - name : Build docs
4646 - name : Set up Python
4747 uses : actions/setup-python@v4.3.0
4848 with :
49- python-version : " 3.10 "
49+ python-version : " 3.11 "
5050 - name : Install dependencies
5151 run : pip install tox twine wheel
5252 - name : Check twine readme rendering
Original file line number Diff line number Diff line change 2727 fetch-depth : 0
2828 - uses : actions/setup-python@v4.3.0
2929 with :
30- python-version : " 3.10 "
30+ python-version : " 3.11 "
3131 - run : pip install --upgrade tox
3232 - name : Run commitizen (https://commitizen-tools.github.io/commitizen/)
3333 run : tox -e cz
Original file line number Diff line number Diff line change 3232 - uses : actions/checkout@v3.1.0
3333 - uses : actions/setup-python@v4.3.0
3434 with :
35- python-version : " 3.10 "
35+ python-version : " 3.11 "
3636 - name : install tox
3737 run : pip install tox==3.26.0
3838 - name : pre-commit
Original file line number Diff line number Diff line change @@ -26,23 +26,23 @@ jobs:
2626 os : [ubuntu-latest]
2727 python :
2828 - version : " 3.7"
29- toxenv : py37
29+ toxenv : py37,smoke
3030 - version : " 3.8"
31- toxenv : py38
31+ toxenv : py38,smoke
3232 - version : " 3.9"
33- toxenv : py39
33+ toxenv : py39,smoke
3434 - version : " 3.10"
3535 toxenv : py310,smoke
36- - version : ' 3.11.0-alpha - 3.11 ' # SemVer's version range syntax
36+ - version : " 3.11"
3737 toxenv : py311,smoke
3838 include :
3939 - os : macos-latest
4040 python :
41- version : " 3.10 "
41+ version : " 3.11 "
4242 toxenv : py310,smoke
4343 - os : windows-latest
4444 python :
45- version : " 3.10 "
45+ version : " 3.11 "
4646 toxenv : py310,smoke
4747 steps :
4848 - uses : actions/checkout@v3.1.0
6767 - name : Set up Python
6868 uses : actions/setup-python@v4.3.0
6969 with :
70- python-version : " 3.10 "
70+ python-version : " 3.11 "
7171 - name : Install dependencies
7272 run : pip install tox
7373 - name : Run tests
8888 - name : Set up Python ${{ matrix.python-version }}
8989 uses : actions/setup-python@v4.3.0
9090 with :
91- python-version : " 3.10 "
91+ python-version : " 3.11 "
9292 - name : Install dependencies
9393 run : pip install tox
9494 - name : Run tests
Original file line number Diff line number Diff line change 11ARG PYTHON_FLAVOR=alpine
2- FROM python:3.10 -${PYTHON_FLAVOR} AS build
2+ FROM python:3.11 -${PYTHON_FLAVOR} AS build
33
44WORKDIR /opt/python-gitlab
55COPY . .
66RUN python setup.py bdist_wheel
77
8- FROM python:3.10 -${PYTHON_FLAVOR}
8+ FROM python:3.11 -${PYTHON_FLAVOR}
99
1010WORKDIR /opt/python-gitlab
1111COPY --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:
4848 "Programming Language :: Python :: 3.8" ,
4949 "Programming Language :: Python :: 3.9" ,
5050 "Programming Language :: Python :: 3.10" ,
51+ "Programming Language :: Python :: 3.11" ,
5152 ],
5253 extras_require = {
5354 "autocompletion" : ["argcomplete>=1.10.0,<3" ],
You can’t perform that action at this time.
0 commit comments