Skip to content

Commit ad148d8

Browse files
Update all non-major dependencies
1 parent bade5dc commit ad148d8

File tree

7 files changed

+11
-11
lines changed

7 files changed

+11
-11
lines changed

.github/workflows/autoformat-pixeebot-prs.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
- name: Set up Python
1919
uses: actions/setup-python@v6
2020
with:
21-
python-version: "3.13"
21+
python-version: "3.14"
2222

2323
- name: Install black
2424
run: pip install black

.github/workflows/codemod_pygoat.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
- name: Set Up Python
2727
uses: actions/setup-python@v6
2828
with:
29-
python-version: '3.13'
29+
python-version: '3.14'
3030
cache: 'pip'
3131
- name: Install Codemodder Package
3232
run: pip install .

.github/workflows/deploy_to_pypi.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
- name: Set Up Python
1515
uses: actions/setup-python@v6
1616
with:
17-
python-version: '3.13'
17+
python-version: '3.14'
1818
- name: Check out code
1919
uses: actions/checkout@v5
2020
- name: Install build dependencies

.github/workflows/lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
- name: Set Up Python
2727
uses: actions/setup-python@v6
2828
with:
29-
python-version: '3.13'
29+
python-version: '3.14'
3030
cache: 'pip'
3131
- name: Install Dependencies
3232
run: |

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
- name: Set Up Python
3131
uses: actions/setup-python@v6
3232
with:
33-
python-version: '3.13'
33+
python-version: '3.14'
3434
cache: 'pip'
3535
- name: Install build dependencies
3636
run: pip install build twine
@@ -49,7 +49,7 @@ jobs:
4949
- name: Set Up Python
5050
uses: actions/setup-python@v6
5151
with:
52-
python-version: '3.13'
52+
python-version: '3.14'
5353
cache: 'pip'
5454
- name: Install Codemodder Package
5555
# Only install what most users would, not optional dependencies

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM python:3.13
1+
FROM python:3.14
22
WORKDIR /codemodder
33
COPY . .
44

pyproject.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ dependencies = [
2424
"tomlkit~=0.13.0",
2525
"wrapt~=1.17.0",
2626
"chardet~=5.2.0",
27-
"sarif-pydantic~=0.5.1",
27+
"sarif-pydantic~=0.6.1",
2828
"setuptools~=80.0",
2929
]
3030
keywords = ["codemod", "codemods", "security", "fix", "fixes"]
@@ -51,11 +51,11 @@ get-hashes = 'codemodder.scripts.get_hashes:main'
5151

5252
[project.optional-dependencies]
5353
semgrep = [
54-
"semgrep>=1.134,<1.135",
54+
"semgrep>=1.139,<1.140",
5555
]
5656
test = [
5757
"azure-ai-inference>=1.0.0b1,<2.0",
58-
"coverage>=7.10,<7.11",
58+
"coverage>=7.11,<7.12",
5959
"coverage-threshold~=0.4",
6060
"defusedxml==0.7.1",
6161
"types-defusedxml==0.7.0.20250822",
@@ -86,7 +86,7 @@ test = [
8686
"fickling~=0.1.0,>=0.1.3",
8787
"graphql-server~=3.0.0b9",
8888
"unidiff>=0.7.5",
89-
"semgrep>=1.134,<1.135",
89+
"semgrep>=1.139,<1.140",
9090
]
9191
complexity = [
9292
"radon==6.0.*",

0 commit comments

Comments
 (0)