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
Commits
73972c6b
Commit
73972c6b
authored
1 year ago
by
Vincent Hatakeyama
Browse files
Options
Downloads
Plain Diff
Merge
parents
d869c11c
83cde0a9
No related branches found
No related tags found
No related merge requests found
Pipeline
#76563
passed
1 year ago
Stage: build
Stage: test
Stage: doc
Stage: deploy
Changes
3
Pipelines
1
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
+
1
−
2
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
+
3
−
1
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
+
36
−
10
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.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment