From a0ca457ec0fe227ca40429853093876dde88545b Mon Sep 17 00:00:00 2001 From: Roman Osheka Date: Mon, 17 Jun 2024 14:33:50 +0300 Subject: [PATCH 1/4] try fix dependency packages --- pyproject.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index b6ce4e5..401b2c6 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -10,8 +10,8 @@ repository = "https://github.com/filias/gpwebpay" [tool.poetry.dependencies] python = ">=3.8,<3.12" -cryptography="3.4.8" -requests="2.23" +cryptography=">=3.4.8" +requests=">=2.23" python-dotenv = "^0.21.0" pydantic-settings = "^2.1.0" From 3c53c89493184c3f1f0fdf127a004266fee30162 Mon Sep 17 00:00:00 2001 From: Roman Osheka Date: Thu, 20 Jun 2024 11:07:12 +0300 Subject: [PATCH 2/4] try fix configs --- gpwebpay/config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gpwebpay/config.py b/gpwebpay/config.py index 407573b..222287c 100644 --- a/gpwebpay/config.py +++ b/gpwebpay/config.py @@ -3,7 +3,7 @@ class Settings(BaseSettings): - model_config = SettingsConfigDict(env_file=".env", env_prefix='gpwebpay_') + model_config = SettingsConfigDict(env_file=".env", env_prefix='gpwebpay_', extra="forbid") currency: str = "978" # EUR deposit_flag: str = "1" From 42eff86c208552798e4081d6506a443e411a4cbf Mon Sep 17 00:00:00 2001 From: Roman Osheka Date: Thu, 20 Jun 2024 11:13:38 +0300 Subject: [PATCH 3/4] fix config --- gpwebpay/config.py | 2 +- pyproject.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/gpwebpay/config.py b/gpwebpay/config.py index 222287c..5a01bca 100644 --- a/gpwebpay/config.py +++ b/gpwebpay/config.py @@ -3,7 +3,7 @@ class Settings(BaseSettings): - model_config = SettingsConfigDict(env_file=".env", env_prefix='gpwebpay_', extra="forbid") + model_config = SettingsConfigDict(env_file=".env", env_prefix='gpwebpay_', extra="ignore") currency: str = "978" # EUR deposit_flag: str = "1" diff --git a/pyproject.toml b/pyproject.toml index 401b2c6..e4121f0 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "gpwebpay" -version = "0.1.4" +version = "0.1.5" description = "GPWebPay Gateway access with Python" license = "MIT" authors = ["Filipa Andrade "] From 5f9fbdc00945978913ddc70ffe15b204318e79a6 Mon Sep 17 00:00:00 2001 From: Roman Osheka Date: Tue, 15 Jul 2025 14:56:23 +0300 Subject: [PATCH 4/4] change version --- poetry.lock | 2 +- pyproject.toml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/poetry.lock b/poetry.lock index 9f0f892..80d77a2 100644 --- a/poetry.lock +++ b/poetry.lock @@ -641,5 +641,5 @@ socks = ["PySocks (>=1.5.6,!=1.5.7,<2.0)"] [metadata] lock-version = "2.0" -python-versions = ">=3.8,<3.12" +python-versions = ">=3.8" content-hash = "49fe5a8c9c620c619d66f02edc1a9ed6dd975655a2eb3b9a97fbbd7b888f56a2" diff --git a/pyproject.toml b/pyproject.toml index e4121f0..18c1fa2 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "gpwebpay" -version = "0.1.5" +version = "0.1.6" description = "GPWebPay Gateway access with Python" license = "MIT" authors = ["Filipa Andrade "] @@ -9,7 +9,7 @@ readme = "README.md" repository = "https://github.com/filias/gpwebpay" [tool.poetry.dependencies] -python = ">=3.8,<3.12" +python = ">=3.8" cryptography=">=3.4.8" requests=">=2.23" python-dotenv = "^0.21.0"