Skip to content

Commit 55def6e

Browse files
committed
Fixed requirements
1 parent 71fac0f commit 55def6e

3 files changed

Lines changed: 12 additions & 2 deletions

File tree

.github/workflows/python-package.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
fail-fast: false
2020
matrix:
2121
os: [ubuntu-latest]
22-
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
22+
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13", "3.14"]
2323
steps:
2424
- uses: actions/checkout@v3
2525
- name: Set up Python ${{ matrix.python-version }}
@@ -47,7 +47,7 @@ jobs:
4747
- name: Set up Python ${{ matrix.python-version }}
4848
uses: actions/setup-python@v4
4949
with:
50-
python-version: "3.12"
50+
python-version: "3.13"
5151
- name: Install pandoc
5252
run: sudo apt-get install -y pandoc notification-daemon
5353
- name: Install ${{ env.package }}

pyproject.toml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,12 +38,15 @@ dependencies = [
3838
"coloredlogs",
3939
"colorful",
4040
"dateparser>=1.1.8",
41+
"dateutil",
4142
"dicttoxml",
4243
"fonttools>=4.43.0", # SNYK-PYTHON-FONTTOOLS-6133203
4344
"ipaddress>=1.0.23",
4445
"json2html",
4546
"lazy_object_proxy>=1.9.0",
4647
"markdown2>=2.5.4",
48+
"markdown-it-py",
49+
"mmh3",
4750
"netaddr",
4851
"netifaces",
4952
"packaging",
@@ -57,6 +60,7 @@ dependencies = [
5760
"pynput",
5861
"pypandoc",
5962
"pypiwin32; sys_platform=='windows'",
63+
"python-dateutil",
6064
"python-magic",
6165
"python-slugify",
6266
"pyyaml>=5.3.1",
@@ -68,6 +72,7 @@ dependencies = [
6872
"tqdm",
6973
"virtualenv>=20.26.3",
7074
"weasyprint>=65.1",
75+
"webencodings",
7176
"xmltodict",
7277
]
7378
dynamic = ["version"]

requirements.txt

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,15 @@ codext>=1.15.7
44
coloredlogs
55
colorful
66
dateparser>=1.1.8
7+
dateutil
78
dicttoxml
89
fonttools>=4.43.0
910
ipaddress>=1.0.23
1011
json2html
1112
lazy_object_proxy>=1.9.0
1213
markdown2>=2.5.4
14+
markdown-it-py
15+
mmh3
1316
netaddr
1417
netifaces
1518
packaging
@@ -23,6 +26,7 @@ pyminizip
2326
pynput
2427
pypandoc
2528
pypiwin32; sys_platform=='windows'
29+
python-dateutil
2630
python-magic
2731
python-slugify
2832
pyyaml>=5.3.1
@@ -34,6 +38,7 @@ toml
3438
tqdm
3539
virtualenv>=20.26.3
3640
weasyprint>=65.1
41+
webencodings
3742
xmltodict
3843
# Snyk false alarms
3944
pillow>=10.2.0 # solved with asciistuff>=1.3.0

0 commit comments

Comments
 (0)