Skip to content

Commit a03a166

Browse files
authored
Merge pull request #655 from acsone/fix-ci
Fix CI, drop support for python 3.6 and 3.7
2 parents 7a4cec2 + a97fed5 commit a03a166

File tree

3 files changed

+9
-11
lines changed

3 files changed

+9
-11
lines changed

.github/workflows/ci.yml

Lines changed: 6 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -19,18 +19,16 @@ jobs:
1919
strategy:
2020
matrix:
2121
include:
22-
- python-version: "3.6"
23-
machine: ubuntu-20.04
24-
- python-version: "3.7"
25-
machine: ubuntu-20.04
2622
- python-version: "3.8"
27-
machine: ubuntu-20.04
28-
- python-version: "3.10"
2923
machine: ubuntu-22.04
24+
- python-version: "3.10"
25+
machine: ubuntu-24.04
3026
- python-version: "3.11"
31-
machine: ubuntu-22.04
27+
machine: ubuntu-24.04
3228
- python-version: "3.12"
33-
machine: ubuntu-22.04
29+
machine: ubuntu-24.04
30+
- python-version: "3.13"
31+
machine: ubuntu-24.04
3432
steps:
3533
- uses: "actions/checkout@v4"
3634
- uses: "actions/setup-python@v5"

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ dependencies = [
3535
"setuptools-odoo", # for oca-gen-external-dependencies
3636
"whool", # for oca-gen-external-dependencies
3737
]
38-
requires-python = ">=3.6"
38+
requires-python = ">=3.8"
3939
classifiers = [
4040
"Development Status :: 4 - Beta",
4141
"Environment :: Console",

tox.ini

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@
55

66
[tox]
77
envlist =
8-
py36
98
py38
109
py39
1110
py310
1211
py311
1312
py312
13+
py313
1414

1515
[testenv]
1616
skip_missing_interpreters = True
@@ -22,9 +22,9 @@ deps =
2222

2323
[gh-actions]
2424
python =
25-
3.6: py36
2625
3.8: py38
2726
3.9: py39
2827
3.10: py310
2928
3.11: py311
3029
3.12: py312
30+
3.13: py313

0 commit comments

Comments
 (0)