We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bade5dc commit ad148d8Copy full SHA for ad148d8
.github/workflows/autoformat-pixeebot-prs.yaml
@@ -18,7 +18,7 @@ jobs:
18
- name: Set up Python
19
uses: actions/setup-python@v6
20
with:
21
- python-version: "3.13"
+ python-version: "3.14"
22
23
- name: Install black
24
run: pip install black
.github/workflows/codemod_pygoat.yml
@@ -26,7 +26,7 @@ jobs:
26
- name: Set Up Python
27
28
29
- python-version: '3.13'
+ python-version: '3.14'
30
cache: 'pip'
31
- name: Install Codemodder Package
32
run: pip install .
.github/workflows/deploy_to_pypi.yml
@@ -14,7 +14,7 @@ jobs:
14
15
16
17
- name: Check out code
uses: actions/checkout@v5
- name: Install build dependencies
.github/workflows/lint.yml
- name: Install Dependencies
run: |
.github/workflows/test.yml
@@ -30,7 +30,7 @@ jobs:
33
34
35
36
run: pip install build twine
@@ -49,7 +49,7 @@ jobs:
49
50
51
52
53
54
55
# Only install what most users would, not optional dependencies
Dockerfile
@@ -1,4 +1,4 @@
1
-FROM python:3.13
+FROM python:3.14
2
WORKDIR /codemodder
3
COPY . .
4
pyproject.toml
@@ -24,7 +24,7 @@ dependencies = [
"tomlkit~=0.13.0",
25
"wrapt~=1.17.0",
"chardet~=5.2.0",
- "sarif-pydantic~=0.5.1",
+ "sarif-pydantic~=0.6.1",
"setuptools~=80.0",
]
keywords = ["codemod", "codemods", "security", "fix", "fixes"]
@@ -51,11 +51,11 @@ get-hashes = 'codemodder.scripts.get_hashes:main'
[project.optional-dependencies]
semgrep = [
- "semgrep>=1.134,<1.135",
+ "semgrep>=1.139,<1.140",
56
test = [
57
"azure-ai-inference>=1.0.0b1,<2.0",
58
- "coverage>=7.10,<7.11",
+ "coverage>=7.11,<7.12",
59
"coverage-threshold~=0.4",
60
"defusedxml==0.7.1",
61
"types-defusedxml==0.7.0.20250822",
@@ -86,7 +86,7 @@ test = [
86
"fickling~=0.1.0,>=0.1.3",
87
"graphql-server~=3.0.0b9",
88
"unidiff>=0.7.5",
89
90
91
complexity = [
92
"radon==6.0.*",
0 commit comments