Merge branch 'fix-36' into 'main'

[UPD] drop python < 3.9 support and update dependencies

Closes #35 et #36

See merge request odoo-openupgrade-wizard/odoo-openupgrade-wizard!60
This commit is contained in:
LE GAL SYLVAIN 2024-03-22 08:59:06 +00:00
commit 908a38ab81
4 changed files with 621 additions and 735 deletions

View File

@ -73,9 +73,10 @@ pytest:
parallel:
matrix:
- PYTHON_VERSION:
- "3.7"
- "3.8"
- "3.9"
- "3.10"
- "3.11"
- "3.12"
build:
stage: build

View File

@ -0,0 +1,2 @@
Drop support for python version < 3.9. Update dependencies and fix some
issue liked to that.

1343
poetry.lock generated

File diff suppressed because it is too large Load Diff

View File

@ -28,7 +28,7 @@ oow = "odoo_openupgrade_wizard.cli.cli:main"
odoo-openupgrade-wizard = "odoo_openupgrade_wizard.cli.cli:main"
[tool.poetry.dependencies]
python = ">=3.6.3,<4.0.0"
python = ">=3.9,<4.0.0"
click = "^7.0"
click-loglevel = "^0.4"
docker = "^5.0"
@ -37,10 +37,10 @@ git-aggregator = "^2.1"
GitPython = "^3.1"
jinja2 = "^3.0"
loguru = "^0.6"
odoorpc = "^0.8"
odoorpc = "^0.10.1"
plumbum = "^1.7"
pygount = "^1.4"
pyyaml = "5.4.1"
pyyaml = "^6.0.0"
single-source = "^0.3"
[tool.poetry.group.dev.dependencies]