Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found

Target

Select target project
  • xcg/odoo-modules/xbus_common
1 result
Show changes
Commits on Source (3)
9995f0cd37da4b8de9395313c536f8bd4a091d48 16.0.1.0.0
209681711c30f2cbf7e67f2884c68e9e06e487c6 16.0.1.0.1
78f007d2e5970a6307b1b2f142bfe07dd16f4213 16.0.1.1.0
209681711c30f2cbf7e67f2884c68e9e06e487c6 16.0.1.0.1
0000000000000000000000000000000000000000 16.0.1.0.1
5b85fef4c57e21a44ffaf9951c26c36455357d18 16.0.1.1.1
......@@ -8,6 +8,8 @@
Make JSON display of message
Improve the changes set in 16.0.1.1.0
16.0.1.1.1
----------
......@@ -11,7 +13,7 @@
16.0.1.1.1
----------
Improve the changes set in 16.0.1.1.0
Loosen up python version.
16.0.1.1.0
----------
......
......@@ -2,10 +2,10 @@
name = "odoo-addon-xbus-common"
dynamic = ["version"]
readme = "README.rst"
requires-python = "~=3.10.0"
requires-python = "~=3.10"
license = { file = "LICENSE", name = "GNU Affero General Public License v3" }
keywords = ["odoo"]
authors = [{ name = "XCG Consulting" }]
classifiers = [
"Programming Language :: Python",
"Programming Language :: Python :: 3",
......@@ -6,9 +6,11 @@
license = { file = "LICENSE", name = "GNU Affero General Public License v3" }
keywords = ["odoo"]
authors = [{ name = "XCG Consulting" }]
classifiers = [
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Framework :: Odoo",
"Framework :: Odoo :: 16.0",
"License :: OSI Approved :: GNU Affero General Public License v3"
......@@ -16,7 +18,7 @@
dependencies = ["odoo==16.0.*"]
[project.optional-dependencies]
doc = ["sphinx", "sphinx-odoo-autodoc"]
doc = ["sphinx", "sphinx-odoo-autodoc", "odoo-scripts"]
# Assume version 3 of odoo-test-helper will break compatibility
test = ["odoo-test-helper >=2.0.4,<3"]
......@@ -25,6 +27,19 @@
changelog = "https://orus.io/xcg/odoo-module/xbus-common/-/blob/branch/16.0/NEWS.rst"
[build-system]
requires = ["setuptools >=64.0.0", "wheel", "setuptools_scm[toml] >=6.2"]
build-backend = "setuptools.build_meta"
requires = ["hatchling >=1.19", "hatch-vcs"]
build-backend = "hatchling.build"
[tool.hatch.build]
exclude = [
"/doc/",
"/.editorconfig",
"/.eslintrc.yml",
"/.flake8",
"/.gitlab-ci.yml",
"/.hgignore",
"/.hgtags",
"/.prettierrc.yml",
"/.yamllint.yaml"
]
......@@ -30,4 +45,13 @@
[tool.setuptools]
package-dir = { "odoo.addons.xbus_common" = "." }
[tool.hatch.build.targets.wheel]
include = [
"*.csv",
"/i18n/",
"/static/",
"README.rst",
"*.xml",
"*.py",
"*.svg",
"*.png"
]
......@@ -33,4 +57,4 @@
[tool.setuptools.package-data]
"*" = ["*"]
[tool.hatch.build.targets.wheel.sources]
"" = "odoo/addons/xbus_common"
......@@ -36,4 +60,5 @@
[tool.setuptools_scm]
[tool.hatch.version]
source = "vcs"
[tool.black]
......@@ -38,6 +63,7 @@
[tool.black]
target = 3.10
target-version = ["py310", "py311"]
required-version = "22"
[tool.isort]
py_version = 310
......