Skip to content

Commit 1321b65

Browse files
committed
Fixed some vulnerabilities
1 parent 7b9ccd4 commit 1321b65

File tree

5 files changed

+11
-11
lines changed

5 files changed

+11
-11
lines changed

.github/workflows/python-package.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
- name: Install ${{ env.package }}
3232
run: |
3333
python -m pip install --upgrade pip
34-
python -m pip install pytest pytest-cov pytest-pythonpath coverage
34+
python -m pip install pytest pytest-cov coverage
3535
pip install -r requirements.txt
3636
pip install .
3737
- name: Test ${{ env.package }} with pytest
@@ -53,7 +53,7 @@ jobs:
5353
- name: Install ${{ env.package }}
5454
run: |
5555
python -m pip install --upgrade pip
56-
python -m pip install pytest pytest-cov pytest-pythonpath
56+
python -m pip install pytest pytest-cov
5757
pip install -r requirements.txt
5858
pip install .
5959
- name: Make coverage badge for ${{ env.package }}

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ dependencies = [
4343
"ipaddress>=1.0.23",
4444
"json2html",
4545
"lazy_object_proxy>=1.9.0",
46-
"markdown2>=2.4.0",
46+
"markdown2>=2.5.4",
4747
"netaddr",
4848
"netifaces",
4949
"packaging",

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: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,23 @@
11
argcomplete>=3.0.8
2-
asciistuff>=1.3.1
3-
bitstring==4.0.2
4-
codext>=1.15.4
2+
asciistuff>=1.3.3
3+
codext>=1.15.7
54
coloredlogs
65
colorful
76
dateparser>=1.1.8
87
dicttoxml
9-
fonttools>=4.43.0 # SNYK-PYTHON-FONTTOOLS-6133203
8+
fonttools>=4.43.0
109
ipaddress>=1.0.23
1110
json2html
1211
lazy_object_proxy>=1.9.0
13-
markdown2>=2.4.0
12+
markdown2>=2.5.4
1413
netaddr
1514
netifaces
1615
packaging
1716
patchy
1817
pathlib2
1918
pip>=24.0
2019
plyer>=2.0.0
20+
pydyf>=0.11.0
2121
pygments>=2.8.1
2222
pyminizip
2323
pynput
@@ -33,7 +33,7 @@ terminaltables
3333
toml
3434
tqdm
3535
virtualenv>=20.26.3
36-
weasyprint>=60.2
36+
weasyprint>=65.1
3737
xmltodict
3838
# Snyk false alarms
3939
pillow>=10.2.0 # solved with asciistuff>=1.3.0

src/tinyscript/VERSION.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.30.26
1+
1.30.27

0 commit comments

Comments
 (0)