Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Xbus Common
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Package Registry
Operate
Terraform modules
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
XCG
Odoo modules
Xbus Common
Compare revisions
0ccb3d949274dad9e030cd6eb6ac31f03dfeec0b to 73972c6bbda7eb36a7996b1a0b60d414b93fe898
Compare revisions
Changes are shown as if the
source
revision was being merged into the
target
revision.
Learn more about comparing revisions.
Source
xcg/odoo-modules/xbus_common
Select target project
No results found
73972c6bbda7eb36a7996b1a0b60d414b93fe898
Select Git revision
Swap
Target
xcg/odoo-modules/xbus_common
Select target project
xcg/odoo-modules/xbus_common
1 result
0ccb3d949274dad9e030cd6eb6ac31f03dfeec0b
Select Git revision
Show changes
Only incoming changes from source
Include changes to target since source was created
Compare
Commits on Source (3)
🚑
loosen up python version and
📝
build with hatchling
· 5b85fef4
Vincent Hatakeyama
authored
1 year ago
5b85fef4
Added tag 16.0.1.1.1 for changeset
5b85fef4c57e
· 83cde0a9
Vincent Hatakeyama
authored
1 year ago
83cde0a9
Merge
· 73972c6b
Vincent Hatakeyama
authored
1 year ago
73972c6b
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
.hgtags
+1
-2
1 addition, 2 deletions
.hgtags
NEWS.rst
+3
-1
3 additions, 1 deletion
NEWS.rst
pyproject.toml
+36
-10
36 additions, 10 deletions
pyproject.toml
with
40 additions
and
13 deletions
.hgtags
View file @
73972c6b
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
This diff is collapsed.
Click to expand it.
NEWS.rst
View file @
73972c6b
...
...
@@ -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
----------
...
...
This diff is collapsed.
Click to expand it.
pyproject.toml
View file @
73972c6b
...
...
@@ -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
...
...
This diff is collapsed.
Click to expand it.