mirror of
https://github.com/bringout/oca-ocb-core.git
synced 2026-04-22 22:32:01 +02:00
19.0 vanilla
This commit is contained in:
parent
0a7ae8db93
commit
991d2234ca
416 changed files with 646602 additions and 300844 deletions
|
|
@ -1,9 +1,8 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
RELEASE_LEVELS = [ALPHA, BETA, RELEASE_CANDIDATE, FINAL] = ['alpha', 'beta', 'candidate', 'final']
|
||||
RELEASE_LEVELS_DISPLAY = {ALPHA: ALPHA,
|
||||
BETA: BETA,
|
||||
RELEASE_LEVELS_DISPLAY = {ALPHA: 'a',
|
||||
BETA: 'b',
|
||||
RELEASE_CANDIDATE: 'rc',
|
||||
FINAL: ''}
|
||||
|
||||
|
|
@ -12,9 +11,10 @@ RELEASE_LEVELS_DISPLAY = {ALPHA: ALPHA,
|
|||
# properly comparable using normal operators, for example:
|
||||
# (6,1,0,'beta',0) < (6,1,0,'candidate',1) < (6,1,0,'candidate',2)
|
||||
# (6,1,0,'candidate',2) < (6,1,0,'final',0) < (6,1,2,'final',0)
|
||||
version_info = (18, 0, 0, FINAL, 0, '')
|
||||
version = '.'.join(str(s) for s in version_info[:2]) + RELEASE_LEVELS_DISPLAY[version_info[3]] + str(version_info[4] or '') + version_info[5]
|
||||
# NOTE: during release, the MAJOR version can become an arbitrary string ('saas~xx')
|
||||
version_info = (19, 0, 0, FINAL, 0, '')
|
||||
series = serie = major_version = '.'.join(str(s) for s in version_info[:2])
|
||||
version = series + RELEASE_LEVELS_DISPLAY[version_info[3]] + str(version_info[4] or '') + version_info[5]
|
||||
|
||||
product_name = 'Odoo'
|
||||
description = 'Odoo Server'
|
||||
|
|
@ -35,3 +35,7 @@ author_email = 'info@odoo.com'
|
|||
license = 'LGPL-3'
|
||||
|
||||
nt_service_name = "odoo-server-" + series.replace('~','-')
|
||||
|
||||
MIN_PY_VERSION = (3, 10)
|
||||
MAX_PY_VERSION = (3, 13)
|
||||
MIN_PG_VERSION = 13
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue