1 2 3 4 5 6 7 8 9 10 11 12 13 14
|
# pinned dependencies to reproduce an entire development environment to use HDMF, run HDMF tests, check code style,
# compute coverage, and create test environments. note that depending on the version of python installed, different
# versions of requirements may be installed due to package incompatibilities.
#
black==24.4.2
codespell==2.3.0
coverage==7.5.4
pre-commit==3.7.1; python_version >= "3.9"
pre-commit==3.5.0; python_version < "3.9"
pytest==8.1.2 # regression introduced in pytest 8.2.*, will be fixed in 8.3.0
pytest-cov==5.0.0
python-dateutil==2.8.2
ruff==0.5.0
tox==4.15.1
|