We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In this repo there is a dependency on pygount:
pygount
server-tools/requirements.txt
Line 10 in 0169df8
chardet = "^5"
chardet==4.0.0
The last version of pygount to support chardet = "^4" is 1.4.0 (https://github.com/roskakori/pygount/blob/49ca668c55d5383c2e512913f3264f1d954bfc7a/pyproject.toml#L68)
chardet = "^4"
If one installs the dependencies from both repositories requirements.txt files, Odoo fails to start:
requirements.txt
pkg_resources.ContextualVersionConflict: (chardet 5.2.0 (/usr/local/lib/python3.9/site-packages), Requirement.parse('chardet<5,>=3.0.2'), {'requests'})
This can be solved by specifying the compatible version in this repo:
pygount==1.4.0
The text was updated successfully, but these errors were encountered:
You can add a PR pinning such dependency in the manifest of the affected module.
Sorry, something went wrong.
Pin the pygount dependency to 1.4.0 to avoid chardet version clash
3c45540
Fixes OCA#2966
Successfully merging a pull request may close this issue.
In this repo there is a dependency on
pygount
:server-tools/requirements.txt
Line 10 in 0169df8
The current version of pygount (1.8.0) requires
chardet = "^5"
(https://github.com/roskakori/pygount/blob/7113dd74687732e4c5d7195050caea8e83b67c9f/pyproject.toml#L68). However, Odoo itself requireschardet==4.0.0
(https://github.com/odoo/odoo/blob/09ada135847b96fa58d862568603dde61fcf1488/requirements.txt#L4)The last version of
pygount
to supportchardet = "^4"
is 1.4.0 (https://github.com/roskakori/pygount/blob/49ca668c55d5383c2e512913f3264f1d954bfc7a/pyproject.toml#L68)If one installs the dependencies from both repositories
requirements.txt
files, Odoo fails to start:This can be solved by specifying the compatible version in this repo:
The text was updated successfully, but these errors were encountered: