Skip to content

Commit 0ae98bd

Browse files
authored
Merge pull request #281 from magmax/main
Fix safety issue on urllib3
2 parents 83d8516 + 5065c11 commit 0ae98bd

File tree

3 files changed

+41
-24
lines changed

3 files changed

+41
-24
lines changed

.pre-commit-config.yaml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,3 @@ repos:
5858
rev: v2.1.2
5959
hooks:
6060
- id: prettier
61-
- repo: https://github.com/pycqa/isort
62-
rev: 5.10.1
63-
hooks:
64-
- id: isort

poetry.lock

Lines changed: 38 additions & 19 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 & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,8 @@ classifiers = [
1919
]
2020

2121
[tool.poetry.dependencies]
22-
python = ">=3.8"
22+
# <4.0 necessary to be able to resolve urllib3 and be able to use a safe version
23+
python = ">=3.8,<4.0"
2324
blessed = ">=1.19.0"
2425
readchar = ">=3.0.6"
2526
python-editor = ">=1.0.4"
@@ -29,6 +30,7 @@ bandit = ">=1.7.4"
2930
flake8 = ">=4.0.1,<5.0.0"
3031
flake8-docstrings = ">=1.6.0"
3132
furo = ">=2022.9.29"
33+
isort = ">=5.10.1"
3234
pexpect = ">=4.8.0"
3335
pre-commit = ">=2.17.0"
3436
pre-commit-hooks = ">=4.3.0"

0 commit comments

Comments
 (0)