Skip to content

Commit

Permalink
Merge pull request OCA#70 from Tecnativa/odoo15
Browse files Browse the repository at this point in the history
[IMP] support Odoo 15.0
  • Loading branch information
sbidoul committed Oct 13, 2021
2 parents 2c2714c + a8314d9 commit c41aae7
Show file tree
Hide file tree
Showing 12 changed files with 512 additions and 492 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Expand Up @@ -21,6 +21,7 @@ jobs:
odoo-version:
- 13.0
- 14.0
- 15.0
steps:
# Prepare environment
- uses: actions/checkout@v2.3.3
Expand All @@ -44,7 +45,6 @@ jobs:
cache ${{ secrets.CACHE_DATE }} ${{ env.PY }} ${{ runner.os }} ${{
hashFiles('pyproject.toml') }} ${{ hashFiles('poetry.lock') }}
- run: poetry install

# Let tests issue git commits
- run: git config --global user.name CI
- run: git config --global user.email CI@GITHUB
Expand Down
12 changes: 6 additions & 6 deletions .pre-commit-config.yaml
Expand Up @@ -4,11 +4,11 @@ repos:
hooks:
- id: black
- repo: https://github.com/pre-commit/mirrors-prettier
rev: v2.1.2
rev: v2.4.1
hooks:
- id: prettier
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v2.4.0
rev: v4.0.1
hooks:
- id: check-case-conflict
- id: check-docstring-first
Expand All @@ -24,15 +24,15 @@ repos:
args: ["--fix=lf"]
- id: trailing-whitespace
- repo: https://gitlab.com/pycqa/flake8
rev: 3.7.9
rev: 3.9.2
hooks:
- id: flake8
additional_dependencies: ["flake8-bugbear==19.8.0"]
additional_dependencies: ["flake8-bugbear==21.9.2"]
- repo: https://github.com/asottile/pyupgrade
rev: v1.26.2
rev: v2.29.0
hooks:
- id: pyupgrade
- repo: https://github.com/timothycrosley/isort
rev: 4.3.21-2
rev: 5.9.3
hooks:
- id: isort
1 change: 1 addition & 0 deletions README.md
Expand Up @@ -59,6 +59,7 @@ This template allows to bootstrap and update addon repositories for these Odoo v

- 13.0
- 14.0
- 15.0

Future versions will be added as they are released. Past versions could be added as long
as they don't break existing branches.
Expand Down
3 changes: 2 additions & 1 deletion copier.yml
Expand Up @@ -12,10 +12,11 @@ _envops:

odoo_version:
type: float
default: 14.0
default: 15.0
choices:
- 13.0
- 14.0
- 15.0
help: Which Odoo version are we deploying in this branch?

repo_slug:
Expand Down

0 comments on commit c41aae7

Please sign in to comment.