Skip to content

Commit 68821d2

Browse files
committed
Update base files from copier template
https://github.com/OCA/oca-addons-repo-template
1 parent dd717b1 commit 68821d2

File tree

4 files changed

+18
-5
lines changed

4 files changed

+18
-5
lines changed

.copier-answers.yml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,17 @@
11
# Do NOT update manually; changes here will be overwritten by Copier
2-
_commit: v1.3.3
2+
_commit: v1.3.5
33
_src_path: gh:oca/oca-addons-repo-template
44
ci: GitHub
55
dependency_installation_mode: PIP
66
generate_requirements_txt: true
77
include_wkhtmltopdf: false
88
odoo_version: 15.0
99
rebel_module_groups: []
10-
repo_description: 'TODO: add repo description.'
11-
repo_name: queue
10+
repo_description: Asynchronous Job Queue. Delay Model methods in asynchronous jobs,
11+
executed in the background as soon as possible or on a schedule. Support Channels
12+
to segregates jobs in different queues with different capacities. Unlike scheduled
13+
tasks, a job captures arguments for later processing.
14+
repo_name: Queue Job
1215
repo_slug: queue
1316
travis_apt_packages: []
1417
travis_apt_sources: []

.eslintrc.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,12 @@ env:
66
parserOptions:
77
ecmaVersion: 2017
88

9+
overrides:
10+
- files:
11+
- "**/*.esm.js"
12+
parserOptions:
13+
sourceType: module
14+
915
# Globals available in Odoo that shouldn't produce errorings
1016
globals:
1117
_: readonly

.github/workflows/pre-commit.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,8 @@ jobs:
1010
steps:
1111
- uses: actions/checkout@v2
1212
- uses: actions/setup-python@v2
13+
with:
14+
# The pylint-odoo version we use here does not support python 3.10
15+
# https://github.com/OCA/oca-addons-repo-template/issues/80
16+
python-version: "3.9"
1317
- uses: pre-commit/action@v2.0.0

README.md

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

66
<!-- /!\ do not modify above this line -->
77

8-
# queue
8+
# Odoo Queue Job
99

10-
TODO: add repo description.
10+
Asynchronous Job Queue. Delay Model methods in asynchronous jobs, executed in the background as soon as possible or on a schedule. Support Channels to segregates jobs in different queues with different capacities. Unlike scheduled tasks, a job captures arguments for later processing.
1111

1212
<!-- /!\ do not modify below this line -->
1313

0 commit comments

Comments
 (0)