Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 6 additions & 8 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,18 +19,16 @@ jobs:
strategy:
matrix:
include:
- python-version: "3.6"
machine: ubuntu-20.04
- python-version: "3.7"
machine: ubuntu-20.04
- python-version: "3.8"
machine: ubuntu-20.04
- python-version: "3.10"
machine: ubuntu-22.04
- python-version: "3.10"
machine: ubuntu-24.04
- python-version: "3.11"
machine: ubuntu-22.04
machine: ubuntu-24.04
- python-version: "3.12"
machine: ubuntu-22.04
machine: ubuntu-24.04
- python-version: "3.13"
machine: ubuntu-24.04
steps:
- uses: "actions/checkout@v4"
- uses: "actions/setup-python@v5"
Expand Down
10 changes: 7 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,13 @@
$ cd maintainer-tools
$ virtualenv env
$ . env/bin/activate
$ python setup.py install
$ pip install -e .

Alternatively, you can install directly from PyPI:

$ pip install git+https://github.com/OCA/maintainer-tools

Alternatively if using pipx.
Or if using pipx:

$ pipx install oca-maintainers-tools@git+https://github.com/OCA/maintainer-tools.git

Expand Down Expand Up @@ -146,7 +150,7 @@ A custom icon can be added using the `--src-icon` argument:
## Developers

As a developer, you want to launch the scripts without installing the
egg.
package in your system.

$ git clone git@github.com:OCA/maintainer-tools.git
$ cd maintainer-tools
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ dependencies = [
"setuptools-odoo", # for oca-gen-external-dependencies
"whool", # for oca-gen-external-dependencies
]
requires-python = ">=3.6"
requires-python = ">=3.8"
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
Expand Down
4 changes: 2 additions & 2 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,12 @@

[tox]
envlist =
py36
py38
py39
py310
py311
py312
py313

[testenv]
skip_missing_interpreters = True
Expand All @@ -22,9 +22,9 @@ deps =

[gh-actions]
python =
3.6: py36
3.8: py38
3.9: py39
3.10: py310
3.11: py311
3.12: py312
3.13: py313