diff --git a/.github/helper/install.sh b/.github/helper/install.sh index 876afc2a6bc..cb82d2ad733 100644 --- a/.github/helper/install.sh +++ b/.github/helper/install.sh @@ -4,8 +4,6 @@ set -e cd ~ || exit -export BENCH_DISABLE_UV=1 - sudo apt update && sudo apt install redis-server libcups2-dev pip install frappe-bench diff --git a/erpnext/accounts/doctype/period_closing_voucher/period_closing_voucher.js b/erpnext/accounts/doctype/period_closing_voucher/period_closing_voucher.js index 742e4f71576..9c239732359 100644 --- a/erpnext/accounts/doctype/period_closing_voucher/period_closing_voucher.js +++ b/erpnext/accounts/doctype/period_closing_voucher/period_closing_voucher.js @@ -11,9 +11,9 @@ frappe.ui.form.on("Period Closing Voucher", { return { filters: [ ["Account", "company", "=", frm.doc.company], - ["Account", "is_group", "=", "0"], + ["Account", "is_group", "=", 0], ["Account", "freeze_account", "=", "No"], - ["Account", "root_type", "in", "Liability, Equity"], + ["Account", "root_type", "in", ["Liability", "Equity"]], ], }; }); diff --git a/pyproject.toml b/pyproject.toml index 076ebe8f694..af0fbffd9ff 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -23,9 +23,6 @@ dependencies = [ "python-youtube~=0.8.0", "taxjar~=1.9.2", "tweepy~=3.10.0", - - # Pin for compatibility, v2 has breaking changes - "urllib3>=1.26.4,<2", ] [build-system]