Skip to content

Commit cbbdacc

Browse files
committed
Fix rewrite of psycopg2 to psycopg2-binary in setup.py
1 parent 2d4b6a9 commit cbbdacc

File tree

3 files changed

+11
-3
lines changed

3 files changed

+11
-3
lines changed

CHANGELOG.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,14 @@
11
# Release Notes
22

3-
## Release (1.6.0) (2024-12-15)
3+
## Release 1.6.1 (2024-12-16)
4+
5+
### Fixed
6+
7+
- Fix rewrite of "psycopg2 -> psycopg2-binary" in setup.py
8+
9+
---
10+
11+
## Release 1.6.0 (2024-12-15)
412

513
### Added
614

lib/install.bash

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1197,7 +1197,7 @@ function odoo_run_setup_py {
11971197
sed -i 's/suds-jurko/suds-py3/g' "$ODOO_PATH/setup.py";
11981198

11991199
# We have to replace psycopg2 by psycopg-binary to be consistent with requirements.txt
1200-
sed -i 's/psycopg2/psycopg2-binary/g' "$ODOO_PATH/setup.py";
1200+
sed -i 's/psycopg2 /psycopg2-binary/g' "$ODOO_PATH/setup.py";
12011201
fi
12021202

12031203
# Install odoo

lib/version.bash

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,5 @@
99
# Odoo Helper Scripts: Version
1010

1111
# Define version number
12-
ODOO_HELPER_VERSION="1.6.0";
12+
ODOO_HELPER_VERSION="1.6.1";
1313
ODOO_HELPER_CONFIG_VERSION="1";

0 commit comments

Comments
 (0)