Skip to content

Commit d26aa0a

Browse files
committed
1) Added --no-cache-dir for OSX while installing requirements.txt
2) Updated release note.
1 parent f63f8f7 commit d26aa0a

File tree

2 files changed

+7
-4
lines changed

2 files changed

+7
-4
lines changed

docs/en_US/release_notes_9_12.rst

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,9 +35,12 @@ Housekeeping
3535
Bug fixes
3636
*********
3737

38+
| `Issue #8987 <https://github.com/pgadmin-org/pgadmin4/issues/8987>`_ - Fix Query Tool state restoration for new connections and queries.
39+
| `Issue #9110 <https://github.com/pgadmin-org/pgadmin4/issues/9110>`_ - Optimize checkbox selection logic in backup dialog objects tree.
3840
| `Issue #9196 <https://github.com/pgadmin-org/pgadmin4/issues/9196>`_ - Fixed an issue where double click to open a file in the file manager is not working.
3941
| `Issue #9235 <https://github.com/pgadmin-org/pgadmin4/issues/9235>`_ - Fixed an issue where "View/Edit Data" shortcut opened "First 100 rows" instead of "All Rows".
42+
| `Issue #9258 <https://github.com/pgadmin-org/pgadmin4/issues/9258>`_ - Ensure saved shared server passwords are re-encrypted on password change.
4043
| `Issue #9260 <https://github.com/pgadmin-org/pgadmin4/issues/9260>`_ - Fixed an issue where data filter dialog removes newline character when sending SQL to the query tool.
44+
| `Issue #9293 <https://github.com/pgadmin-org/pgadmin4/issues/9293>`_ - Fixed the SSL certificate issue while checking for the upgrade.
45+
| `Issue #9332 <https://github.com/pgadmin-org/pgadmin4/issues/9332>`_ - Fixed a sorting issue in the system stats memory usage table.
4146
| `Issue #9380 <https://github.com/pgadmin-org/pgadmin4/issues/9380>`_ - Fixed an issue where the Query History panel would auto-scroll to the top and did not preserve the scroll bar position for the selected entry.
42-
43-

pkg/mac/build-functions.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ _create_python_env() {
8787
--destination "${BUNDLE_DIR}/Contents/Frameworks/"
8888

8989
"${BUNDLE_DIR}/Contents/Frameworks/Python.framework/Versions/Current/bin/python3" -m ensurepip --upgrade || exit 1
90-
"${BUNDLE_DIR}/Contents/Frameworks/Python.framework/Versions/Current/bin/pip3" install -r "${SOURCE_DIR}/requirements.txt" || exit 1
90+
"${BUNDLE_DIR}/Contents/Frameworks/Python.framework/Versions/Current/bin/pip3" install --no-cache-dir -r "${SOURCE_DIR}/requirements.txt" || exit 1
9191

9292
# Make sure all the .so's in the Python env have the executable bit set
9393
# so they get properly signed later
@@ -135,7 +135,7 @@ _build_docs() {
135135
# shellcheck disable=SC1091
136136
source "${BUILD_ROOT}/venv/bin/activate"
137137
pip3 install --upgrade pip
138-
pip3 install -r "${SOURCE_DIR}/requirements.txt"
138+
pip3 install --no-cache-dir -r "${SOURCE_DIR}/requirements.txt"
139139
pip3 install sphinx==7.4.7
140140
pip3 install sphinxcontrib-youtube
141141

0 commit comments

Comments
 (0)