Skip to content

Commit

Permalink
Merge pull request #488 from Tecnativa/add-jingtrang-dependency-ge-13
Browse files Browse the repository at this point in the history
[ADD] jingtrang to dependencies for odoo >= 13
  • Loading branch information
pedrobaeza authored Sep 10, 2024
2 parents 1c132ce + f3e9b02 commit 25a63c3
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 0 deletions.
12 changes: 12 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ This project lets you maintain [Odoo][] deployments based on [Doodba][] using
- [Use the template to generate your subproject](#use-the-template-to-generate-your-subproject)
- [Getting updates for your subproject](#getting-updates-for-your-subproject)
- [Using your subproject to build an Odoo deployment](#using-your-subproject-to-build-an-odoo-deployment)
- [Python libraries](#python-libraries)
- [Getting help](#getting-help)
- [Contributing](#contributing)
- [Credits](#credits)
Expand Down Expand Up @@ -97,6 +98,17 @@ Basically, read Copier docs and `copier --help-all` to know how to use it.

This is a big topic [documented separately](docs/daily-usage.md).

## Python libraries

This project includes several libraries to add features to odoo scafoldings:

- **openupgradelib**: Tools to manage upgrades in Odoo.
- **unicodecsv**: Read and write CSV files with Unicode encoding support.
- **unidecode**: Transliterates Unicode text to ASCII characters.
- **jingtrang** (from Odoo 13 onwards): XML document validation using RELAX NG schemas.
- **pathlib** (for Odoo < 11): Object-oriented path management for file system
operations.

# Getting help

If your question is not answered in [our FAQ](docs/faq.md) or
Expand Down
3 changes: 3 additions & 0 deletions odoo/custom/dependencies/pip.txt.jinja
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,6 @@ unidecode{% if odoo_version < 11.0 %}<1.3.0{% endif %}
{% if odoo_version < 11.0 -%}
pathlib
{% endif -%}
{% if odoo_version >= 13.0 -%}
jingtrang
{% endif -%}

0 comments on commit 25a63c3

Please sign in to comment.