Skip to content

Commit 935cd8c

Browse files
committed
Fixed some vulnerabilities
1 parent a1c0eea commit 935cd8c

File tree

5 files changed

+8
-7
lines changed

5 files changed

+8
-7
lines changed

.github/workflows/python-package.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
- name: Install ${{ env.package }}
3030
run: |
3131
python -m pip install --upgrade pip
32-
python -m pip install pytest pytest-cov pytest-pythonpath coverage
32+
python -m pip install pytest pytest-cov coverage
3333
pip install -r requirements.txt
3434
pip install .
3535
- name: Test ${{ env.package }} with pytest
@@ -49,7 +49,7 @@ jobs:
4949
- name: Install ${{ env.package }}
5050
run: |
5151
python -m pip install --upgrade pip
52-
python -m pip install pytest pytest-cov pytest-pythonpath
52+
python -m pip install pytest pytest-cov
5353
pip install -r requirements.txt
5454
pip install .
5555
- name: Make coverage badge for ${{ env.package }}

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[build-system]
2-
requires = ["setuptools>=61.0", "setuptools-scm"]
2+
requires = ["setuptools>=80.0.0", "setuptools-scm"]
33
build-backend = "setuptools.build_meta"
44

55
[tool.setuptools.dynamic]
@@ -27,7 +27,7 @@ classifiers = [
2727
]
2828
dependencies = [
2929
"legacycrypt; python_version >= '3.13'",
30-
"markdown2>=2.4.0",
30+
"markdown2>=2.5.4",
3131
]
3232
dynamic = ["version"]
3333

pytest.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
[pytest]
2-
python_paths = src
2+
pythonpath = src

requirements.txt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
1-
markdown2>=2.4.0
1+
markdown2>=2.5.4
2+
legacycrypt; python_version >= '3.13'

src/codext/VERSION.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.15.8
1+
1.15.9

0 commit comments

Comments
 (0)