File tree 3 files changed +14
-2
lines changed
3 files changed +14
-2
lines changed Original file line number Diff line number Diff line change 1
1
# Release Notes
2
2
3
+ ## Release 0.14.1 (2022-09-09)
4
+
5
+ ### Fixes
6
+
7
+ - Require "pyopenssl>=21.0.0" during odoo install to make odoo 15 work on ubuntu:20.04
8
+
9
+ ---
10
+
3
11
## Release 0.14.0 (2022-08-16)
4
12
5
13
### Added
6
14
7
15
- Ability to automatically detect python for Odoo version via following options:
8
16
- ` odoo-helper install reinstall-venv --build-python auto `
9
17
- ` odoo-install --build-python auto `
10
- - Ability to automatically build python of odoo version only if system python do not satisfy odoo requirements.
18
+ - Ability to automatically build python for odoo version only if system python do not satisfy odoo requirements.
11
19
For this reasone new option was added to following commands:
12
20
- ` odoo-helper install reinstall-venv --build-python-if-needed `
13
21
- ` odoo-install --build-python-if-needed `
Original file line number Diff line number Diff line change @@ -553,6 +553,10 @@ function install_odoo_py_requirements_for_version {
553
553
# Recent versions of setup tools do not support `use_2to3` flag,so,
554
554
# we have to use another fork of suds to avoid errors during install
555
555
echo " suds-py3" ;
556
+ elif [[ " $dependency_stripped " =~ pyopenssl* ]]; then
557
+ # We have to use recent version of pyopenssl, because default version (19.0.0)
558
+ # is not compatible with openssl in recent versions of ubuntu.
559
+ echo " pyopenssl>=21.0.0" ;
556
560
else
557
561
# Echo dependency line unchanged to rmp file
558
562
echo " $dependency " ;
Original file line number Diff line number Diff line change 9
9
# Odoo Helper Scripts: Version
10
10
11
11
# Define version number
12
- ODOO_HELPER_VERSION=" 0.14.0 " ;
12
+ ODOO_HELPER_VERSION=" 0.14.1 " ;
13
13
ODOO_HELPER_CONFIG_VERSION=" 1" ;
You can’t perform that action at this time.
0 commit comments