Skip to content

Commit 3e91d88

Browse files
committed
fix: fix security issues
1 parent 2f27102 commit 3e91d88

File tree

1 file changed

+21
-11
lines changed

1 file changed

+21
-11
lines changed

pyproject.toml

Lines changed: 21 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -16,17 +16,27 @@ psutil = "^7.0" # Resource monitoring
1616

1717
[tool.poetry.group.dev.dependencies]
1818
pytest = "^8.0"
19-
hypothesis = "^6.100" # Property-based testing
20-
pytest-cov = "^4.1" # Coverage reporting
21-
pytest-benchmark = "^4.0" # Performance benchmarking
22-
pytest-xdist = "^3.3" # Parallel test execution
23-
black = "^23.0" # Code formatting
24-
isort = "^5.12" # Import sorting
25-
mypy = "^1.5" # Type checking
26-
flake8 = "^6.0" # Linting
27-
sphinx = "^7.0" # Documentation generator
28-
pre-commit = "^3.5" # Git hook management
29-
bandit = "^1.7" # Security scanning
19+
hypothesis = "^6.100"
20+
pytest-cov = "^4.1"
21+
pytest-benchmark = "^4.0"
22+
pytest-xdist = "^3.3"
23+
black = "^23.0"
24+
isort = "^5.12"
25+
mypy = "^1.5"
26+
flake8 = "^6.0"
27+
sphinx = "^7.0"
28+
pre-commit = "^3.5"
29+
bandit = "^1.7"
30+
requests = ">=2.32.4,<3.0.0"
31+
urllib3 = ">=2.5.0,<3.0.0"
32+
idna = ">=3.7,<4.0.0"
33+
certifi = ">=2024.7.4,<2026.0.0"
34+
cryptography = ">=42.0.5,<43.0.0"
35+
configobj = ">=5.0.9,<6.0.0"
36+
pyjwt = ">=2.10.1,<3.0.0"
37+
jinja2 = ">=3.1.6,<4.0.0"
38+
setuptools = ">=78.1.1"
39+
twisted = ">=24.7.0"
3040

3141
[tool.poetry.group.test.dependencies]
3242
# Additional test utilities

0 commit comments

Comments
 (0)