Skip to content

Commit 3546829

Browse files
committed
fixed up deps
1 parent bec4b2c commit 3546829

File tree

2 files changed

+9
-8
lines changed

2 files changed

+9
-8
lines changed

config/python.py

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,7 @@
11
""" python deps for this project """
22

3-
build_requires: list[str] = [
4-
"pyclassifiers",
5-
"pydmt",
6-
"pymakehelper",
7-
"pylint",
8-
]
9-
requires = build_requires
3+
import config.shared
4+
5+
build_requires: list[str] = config.shared.BUILD
6+
test_requires: list[str] = config.shared.TEST
7+
requires = build_requires + test_requires

requirements.thawed.txt

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
# THIS IS AN AUTO-GENERATED FILE. DO NOT EDIT!
2-
pyclassifiers
2+
mypy
3+
pycmdtools
34
pydmt
45
pylint
56
pymakehelper
7+
pytest
8+
ruff

0 commit comments

Comments
 (0)