-
Notifications
You must be signed in to change notification settings - Fork 235
/
requirements-dev.txt
30 lines (26 loc) · 1.05 KB
/
requirements-dev.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
# Developer extra packages
### docs
# Newer sphinx needed for proper type hint support in docstrings
sphinx>=3.0.0
sphinxcontrib-napoleon>=0.5.0
# sphinx-argparse 0.4.0 is the last version to support Python 3.9
# see https://sphinx-argparse.readthedocs.io/en/latest/changelog.html#id3
sphinx-argparse==0.4.0
sphinx-book-theme<=1.1.2,>=1.0.0
sphinx-copybutton==0.5.2
### testing and linting
# TODO/NOTE pytest is specified as a dependency in setup.py, but we might want to pin a specific version here
pytest
coverage
pytest-cov
# @lbianchi-lbl: both pylint and astroid should be tightly pinned; see .pylint/idaes_transform.py for more info
pylint==3.0.3
astroid==3.0.3
black==24.3.0
# pre-commit install, manage, and run pre-commit hooks
pre-commit
### other/misc
addheader>=0.2.2
# this will install IDAES in editable mode using the dependencies defined under the `extras_require` tags defined in `setup.py`
--editable .[ui,grid,omlt,coolprop]
# to customize this (e.g. to install a local clone of the Pyomo git repository), add the desired alternate requirements below