Skip to content

Commit 0a9b2fc

Browse files
authored
PTHMINT-72: Fix dependabot report (#22)
1 parent 670996a commit 0a9b2fc

File tree

3 files changed

+54
-19
lines changed

3 files changed

+54
-19
lines changed

.github/workflows/code-quality.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
runs-on: ubuntu-latest
1515
strategy:
1616
matrix:
17-
python-version: [ '3.8', '3.9', '3.10', '3.11', '3.12', '3.13']
17+
python-version: ['3.9', '3.10', '3.11', '3.12', '3.13']
1818
steps:
1919
- name: Checkout master repository
2020
uses: actions/checkout@v4

poetry.lock

Lines changed: 50 additions & 16 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,11 @@ repository = "https://github.com/MultiSafepay/python-sdk"
99
homepage = "https://multisafepay.com"
1010

1111
[tool.poetry.dependencies]
12-
python = ">=3.8,<3.14"
13-
requests = "^2.32.3"
12+
python = ">=3.9,<3.14"
13+
requests = "^2.32.4"
1414
pydantic = "^1.10.0"
1515
python-dotenv = "^1.0.1"
16+
urllib3 = ">=2.5.0"
1617

1718
[tool.poetry.group.dev.dependencies]
1819
black = "^24.4.2"

0 commit comments

Comments
 (0)