From 2d1e28ac20cdb802595e51bf5c7f272b15c06358 Mon Sep 17 00:00:00 2001 From: Corentin Forler <8860073-cforler_dokos@users.noreply.gitlab.com> Date: Wed, 31 Jan 2024 16:00:21 +0100 Subject: [PATCH 1/2] chore: Update pyproject.toml --- pyproject.toml | 31 ++++++++++++++++--------------- 1 file changed, 16 insertions(+), 15 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 13cfd8899d5..06177f33d98 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,29 +1,30 @@ [project] name = "erpnext" authors = [ - { name = "Frappe Technologies Pvt Ltd", email = "developers@frappe.io"} + { name = "Dokos SAS", email = "hello@dokos.io"}, + { name = "Frappe Technologies Pvt Ltd", email = "developers@frappe.io"}, ] description = "Open Source ERP" requires-python = ">=3.8" readme = "README.md" dynamic = ["version"] dependencies = [ - # Core dependencies - "pycountry~=22.3.5", - "Unidecode~=1.3.6", - "barcodenumber~=0.5.0", - "rapidfuzz~=2.15.0", - "holidays~=0.28", + # Core dependencies + "pycountry~=22.3.5", + "Unidecode~=1.3.6", + "barcodenumber~=0.5.0", + "rapidfuzz~=2.15.0", + "holidays~=0.28", - # integration dependencies - "ofxtools==0.8.16", - "plaid-python~=7.2.1", - "python-youtube~=0.8.0", - "sepaxml~=2.5.0", - "schwifty==2023.11.2", + # integration dependencies + "ofxtools==0.8.16", + "plaid-python~=7.2.1", + "python-youtube~=0.8.0", + "sepaxml~=2.5.0", + "schwifty==2023.11.2", - # Not used directly - required by PyQRCode for PNG generation - "pypng~=0.20220715.0", + # Not used directly - required by PyQRCode for PNG generation + "pypng~=0.20220715.0", ] [build-system] -- GitLab From a7f1cc7f8a64e4cbb4bda2c571dbc33003f37e57 Mon Sep 17 00:00:00 2001 From: Corentin Forler <8860073-cforler_dokos@users.noreply.gitlab.com> Date: Wed, 31 Jan 2024 16:01:23 +0100 Subject: [PATCH 2/2] fix: Add PyPDF2 for FEC export --- pyproject.toml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index 06177f33d98..7d3614b2837 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -25,6 +25,9 @@ dependencies = [ # Not used directly - required by PyQRCode for PNG generation "pypng~=0.20220715.0", + + # @dokos: Export de F.E.C. + "PyPDF2~=2.1.1", ] [build-system] -- GitLab