Skip to content

Commit 3d040ef

Browse files
committed
Move requirements files into pyproject.toml
1 parent dc383ca commit 3d040ef

4 files changed

Lines changed: 12 additions & 12 deletions

File tree

.github/scripts/build.sh

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,7 @@ set -e
1919

2020
PYTHON_VERSION=${PYTHON_VERSION:-3.7}
2121

22-
pip install -U -r .github/scripts/requirements.txt
23-
python setup.py develop
22+
pip install -e .[ci]
2423
python -m pytest # Run the tests without IPython.
2524
pip install ipython
2625
python -m pytest # Now run the tests with IPython.

.github/scripts/requirements.txt

Lines changed: 0 additions & 9 deletions
This file was deleted.

pyproject.toml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,17 @@ test = [
4444
"hypothesis",
4545
"levenshtein",
4646
]
47+
ci = [
48+
"setuptools<=80.9.0",
49+
"pip",
50+
"pylint<3.3.7",
51+
"pytest<=8.3.5",
52+
"pytest-pylint<=1.1.2",
53+
"pytest-runner<7.0.0",
54+
"termcolor<3.2.0",
55+
"hypothesis<6.133.0",
56+
"levenshtein<=0.27.1",
57+
]
4758

4859
[tool.setuptools.packages.find]
4960
include = ["fire*"]

requirements.txt

Lines changed: 0 additions & 1 deletion
This file was deleted.

0 commit comments

Comments
 (0)