Skip to content

Commit 25749d2

Browse files
committed
upgrade to python 3.11
STONEBLD-469 Signed-off-by: Taylor Madore <[email protected]>
1 parent c64c2c6 commit 25749d2

9 files changed

+162
-161
lines changed

.github/workflows/gating.yaml

+3-3
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
runs-on: ubuntu-latest
1515
strategy:
1616
matrix:
17-
python-version: ["3.10"]
17+
python-version: ["3.11"]
1818

1919
steps:
2020
- uses: actions/checkout@v3
@@ -80,7 +80,7 @@ jobs:
8080
- name: Set up Python
8181
uses: actions/setup-python@v4
8282
with:
83-
python-version: "3.10"
83+
python-version: "3.11"
8484
- name: Install dependencies
8585
run: |
8686
python -m pip install --upgrade pip
@@ -136,7 +136,7 @@ jobs:
136136
- name: Set up Python
137137
uses: actions/setup-python@v4
138138
with:
139-
python-version: "3.10"
139+
python-version: "3.11"
140140
- name: Install dependencies
141141
run: |
142142
python -m pip install --upgrade pip

Makefile

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
CACHITO_COMPOSE_ENGINE ?= docker-compose
2-
PYTHON_VERSION_VENV ?= python3.10
3-
TOX_ENVLIST ?= python3.10
2+
PYTHON_VERSION_VENV ?= python3.11
3+
TOX_ENVLIST ?= python3.11
44
TOX_ARGS ?=
55

66
PODMAN_COMPOSE_AUTO_URL ?= https://raw.githubusercontent.com/containers/podman-compose/devel/podman_compose.py

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -175,10 +175,10 @@ environment since Cachito has dependencies on other services.
175175
*NOTE:* you may need to ensure that you have some packages installed. In Fedora, you will need
176176

177177
```
178-
yum install python3.10 python3-devel python3-virtualenv gcc krb5-devel
178+
yum install python3.11 python3-devel python3-virtualenv gcc krb5-devel
179179
```
180180

181-
where `python3.10` is the version of python required based on `tox.ini`.
181+
where `python3.11` is the version of python required based on `tox.ini`.
182182

183183
### Run a Containerized Development Environment
184184

@@ -287,7 +287,7 @@ environment can be configured with `TOX_ENVLIST`.
287287
make test-suite TOX_ARGS="-x --no-cov tests/test_workers/test_tasks/test_gomod.py"
288288
```
289289

290-
By default, `TOX_ENVLIST` is set to `python3.10` indicating that it should run on that version.
290+
By default, `TOX_ENVLIST` is set to `python3.11` indicating that it should run on that version.
291291
If adding environment parameters to `tox`, ensure that you are setting the Python version if needed.
292292

293293
### Clean Up

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.black]
22
line-length = 100
3-
target-version = ['py310']
3+
target-version = ['py311']
44

55
[tool.isort]
66
profile = "black"

requirements-test.txt

+1-9
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#
2-
# This file is autogenerated by pip-compile with Python 3.10
2+
# This file is autogenerated by pip-compile with Python 3.11
33
# by the following command:
44
#
55
# pip-compile --generate-hashes --output-file=requirements-test.txt requirements-test.in
@@ -64,10 +64,6 @@ coverage[toml]==5.5 \
6464
--hash=sha256:f0b278ce10936db1a37e6954e15a3730bea96a0997c26d7fee88e6c396c2086d \
6565
--hash=sha256:f11642dddbb0253cc8853254301b51390ba0081750a8ac03f20ea8103f0c56b6
6666
# via pytest-cov
67-
exceptiongroup==1.0.0rc9 \
68-
--hash=sha256:2e3c3fc1538a094aab74fad52d6c33fc94de3dfee3ee01f187c0e0c72aec5337 \
69-
--hash=sha256:9086a4a21ef9b31c72181c77c040a074ba0889ee56a7b289ff0afb0d97655f96
70-
# via pytest
7167
iniconfig==1.1.1 \
7268
--hash=sha256:011e24c64b7f47f6ebd835bb12a743f2fbe9a26d4cecaa7f53bc4f35ee9da8b3 \
7369
--hash=sha256:bc3af051d7d14b2ee5ef9969666def0cd1a000e121eaea580d4a313df4b37f32
@@ -152,7 +148,3 @@ toml==0.10.2 \
152148
--hash=sha256:806143ae5bfb6a3c6e736a764057db0e6a0e05e338b5630894a5f779cabb4f9b \
153149
--hash=sha256:b3bda1d108d5dd99f4a20d24d9c348e91c4db7ab1b749200bded2f839ccbe68f
154150
# via coverage
155-
tomli==2.0.1 \
156-
--hash=sha256:939de3e7a6161af0c887ef91b7d41a53e7c5a1ca976325f429cb46ea9bc30ecc \
157-
--hash=sha256:de526c12914f0c550d15924c62d72abc48d6fe7364aa87328337a31007fe8a4f
158-
# via pytest

requirements-web.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#
2-
# This file is autogenerated by pip-compile with Python 3.10
2+
# This file is autogenerated by pip-compile with Python 3.11
33
# by the following command:
44
#
55
# pip-compile --generate-hashes --output-file=requirements-web.txt requirements-web.in

requirements.txt

+147-138
Large diffs are not rendered by default.

setup.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -44,10 +44,10 @@
4444
classifiers=[
4545
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
4646
"Programming Language :: Python :: 3 :: Only",
47-
"Programming Language :: Python :: 3.10",
47+
"Programming Language :: Python :: 3.11",
4848
],
4949
license="GPLv3+",
50-
python_requires=">=3.10",
50+
python_requires=">=3.11",
5151
use_scm_version={
5252
"version_scheme": "post-release",
5353
},

tox.ini

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
[tox]
2-
envlist = bandit,black,isort,flake8,mypy,python3.10
2+
envlist = bandit,black,isort,flake8,mypy,python3.11
33

44
[gh-actions]
55
python =
6-
3.10: python3.10
6+
3.11: python3.11
77

88
[testenv]
99
deps =

0 commit comments

Comments
 (0)