Skip to content

Commit 0f73c03

Browse files
committed
chore(deps): upgrade all dependencies to latest versions
Node.js: - @anthropic-ai/claude-code: ^2.0.22 → ^2.0.55 Python core: - packaging: >=23.0 → >=25.0 - PyYAML: >=6.0 → >=6.0.2 Python dev: - pytest: >=7.4.0 → >=9.0.0 - pytest-cov: >=4.1.0 → >=7.0.0 - pytest-mock: >=3.11.1 → >=3.15.0 - pytest-xdist: >=3.3.1 → >=3.8.0 - flake8: >=6.0.0 → >=7.3.0 - mypy: >=1.0.0 → >=1.19.0 - bandit: >=1.7.5 → >=1.9.0 - black: >=23.0.0 → >=25.11.0 - isort: >=5.12.0 → >=7.0.0 - build: >=0.10.0 → >=1.3.0 - twine: >=4.0.0 → >=6.2.0 - safety: >=2.3.0 → >=3.7.0 - markdown: >=3.4.0 → >=3.10
1 parent 156ef58 commit 0f73c03

5 files changed

Lines changed: 1137 additions & 37 deletions

File tree

package-lock.json

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

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"dependencies": {
33
"24": "^0.0.0",
4-
"@anthropic-ai/claude-code": "^2.0.22"
4+
"@anthropic-ai/claude-code": "^2.0.55"
55
}
66
}

pyproject.toml

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -24,25 +24,25 @@ classifiers = [
2424
"Programming Language :: Python :: 3.12",
2525
]
2626
dependencies = [
27-
"packaging>=23.0",
28-
"PyYAML>=6.0",
27+
"packaging>=25.0",
28+
"PyYAML>=6.0.2",
2929
]
3030

3131
[project.optional-dependencies]
3232
dev = [
33-
"pytest>=7.4.0",
34-
"pytest-cov>=4.1.0",
35-
"pytest-mock>=3.11.1",
36-
"pytest-xdist>=3.3.1",
37-
"flake8>=6.0.0",
38-
"mypy>=1.0.0",
39-
"bandit>=1.7.5",
40-
"black>=23.0.0",
41-
"isort>=5.12.0",
42-
"build>=0.10.0",
43-
"twine>=4.0.0",
44-
"safety>=2.3.0",
45-
"markdown>=3.4.0",
33+
"pytest>=9.0.0",
34+
"pytest-cov>=7.0.0",
35+
"pytest-mock>=3.15.0",
36+
"pytest-xdist>=3.8.0",
37+
"flake8>=7.3.0",
38+
"mypy>=1.19.0",
39+
"bandit>=1.9.0",
40+
"black>=25.11.0",
41+
"isort>=7.0.0",
42+
"build>=1.3.0",
43+
"twine>=6.2.0",
44+
"safety>=3.7.0",
45+
"markdown>=3.10",
4646
]
4747

4848
[project.scripts]

requirements-dev.txt

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,29 +1,29 @@
11
# Development dependencies for AI CLI Preparation
22

33
# Testing
4-
pytest>=7.4.0
5-
pytest-cov>=4.1.0
6-
pytest-mock>=3.11.1
7-
pytest-xdist>=3.3.1 # Parallel test execution
4+
pytest>=9.0.0
5+
pytest-cov>=7.0.0
6+
pytest-mock>=3.15.0
7+
pytest-xdist>=3.8.0 # Parallel test execution
88

99
# Linting and Type Checking
10-
flake8>=6.0.0
11-
mypy>=1.0.0
12-
bandit>=1.7.5 # Security linting
10+
flake8>=7.3.0
11+
mypy>=1.19.0
12+
bandit>=1.9.0 # Security linting
1313

1414
# Code Quality
15-
black>=23.0.0 # Code formatting
16-
isort>=5.12.0 # Import sorting
15+
black>=25.11.0 # Code formatting
16+
isort>=7.0.0 # Import sorting
1717

1818
# Build and Distribution
19-
build>=0.10.0
20-
twine>=4.0.0
19+
build>=1.3.0
20+
twine>=6.2.0
2121

2222
# Security
23-
safety>=2.3.0 # Dependency security checks
23+
safety>=3.7.0 # Dependency security checks
2424

2525
# Configuration parsing (Phase 2.1)
26-
PyYAML>=6.0
26+
PyYAML>=6.0.2
2727

2828
# Documentation
29-
markdown>=3.4.0
29+
markdown>=3.10

0 commit comments

Comments
 (0)