# Pip requirements file for development dependencies.


# Direct dependencies for development and indirect dependencies for development
# that are needed for some reason (must be consistent with minimum-constraints-develop.txt)

# six
# python-dateutil 2.8 requires six>=1.5
# sphinx-git 11.0 requires six (any version)
# coverage imports six when testing, but does not declare it in its dependencies. check_reqs still needs it.
six>=1.16.0

# Tox
tox>=4.15.0

# PEP517 package builder, used in Makefile
build>=1.0.0
# build requires virtualenv.cli_run which was added in virtualenv 20.1
virtualenv>=20.26.6
pyproject-hooks>=1.1.0

# Change log
towncrier>=22.8.0

# Safety CI by pyup.io
# safety 3.6.1 fixes the issue with typer >=0.17.0, see https://github.com/pyupio/safety/issues/778
# pydantic 2.8.0 fixes an install issue on Python 3.13.
# pydantic 2.12.0 fixes an install issue on Python 3.14.
# Safety 3.6.2 removed the pinning of pydantic<2.10.0,>=2.6.0.
safety>=3.6.2
safety-schemas>=0.0.16
dparse>=0.6.4
ruamel.yaml>=0.17.21
# click is covered in requirements.txt
Authlib>=1.3.2; python_version == '3.8'
Authlib>=1.6.5; python_version >= '3.9'
marshmallow>=3.15.0; python_version == '3.8'
marshmallow>=3.26.2; python_version >= '3.9'
pydantic>=2.10.6; python_version == '3.8'
pydantic>=2.12.0; python_version >= '3.9'
pydantic_core>=2.27.2; python_version == '3.8'
pydantic_core>=2.41.1; python_version >= '3.9'
#safety 3.6.1 depends on typer>=0.16.0
typer>=0.16.0
typer-cli>=0.16.0
typer-slim>=0.16.0
# safety 3.4.0 depends on psutil~=6.1.0
psutil~=6.1.0

# Bandit checker
bandit>=1.7.8

# Unit test:
# pytest 8.4.0 removed support for Python 3.8 and added support for Python 3.14.
pytest>=8.3.5; python_version == '3.8'
pytest>=8.4.0; python_version >= '3.9'
# For versions of importlib-metadata that are in Python, see https://pypi.org/project/importlib-metadata/
# importlib-metadata 8.5.0 is the last version supporting Python 3.8
importlib-metadata>=8.5.0; python_version == '3.8'
importlib-metadata>=8.7.0; python_version >= '3.9'
colorama>=0.4.6

# packaging is used by pytest, pip-check-reqs, sphinx, tox
packaging>=24.1

# Coverage reporting (no imports, invoked via coveralls script):
# coveralls versions 4.0.0/4.0.1 have increased their pinning of coverage to <8,
#   but they have also added a constraint for Python to <3.13. Due to that
#   Python pinning, we need to use the older coverage and coveralls versions on
#   Python>=3.13.
# Note: The earlier repetition of pinnings to avoid pip backtracking no longer
#       seems to be needed.
coverage>=7.6.1; python_version == '3.8'
coverage>=7.8.0; python_version >= '3.9' and python_version <= '3.12'
coverage>=6.5.0; python_version >= '3.13'
pytest-cov>=2.7.0
coveralls>=4.0.1; python_version <= '3.12'
coveralls>=3.3.0; python_version >= '3.13'

# Sphinx (no imports, invoked via sphinx-build script):
# Sphinx 7.2.0 started requiring Python>=3.9
Sphinx>=7.1.0; python_version == '3.8'
Sphinx>=7.2.0; python_version >= '3.9'
# Sphinx 7.1.0 pins docutils to <0.21
docutils>=0.20.1
sphinx-git>=10.1.1
GitPython>=3.1.41
Pygments>=2.15.0
sphinx-rtd-theme>=2.0.0
sphinxcontrib-applehelp>=1.0.4
sphinxcontrib-devhelp>=1.0.2
sphinxcontrib-htmlhelp>=2.0.1
sphinxcontrib-jquery>=4.1
sphinxcontrib-jsmath>=1.0.1
sphinxcontrib-qthelp>=1.0.3
sphinxcontrib-serializinghtml>=1.1.5; python_version == '3.8'
sphinxcontrib-serializinghtml>=1.1.9; python_version >= '3.9'
sphinxcontrib-websupport>=1.2.4
autodocsumm>=0.2.12
Babel>=2.11.0
# snowballstemmer 3.0.0 does not include algorithms used by Sphinx.
# For details, see https://github.com/snowballstem/snowball/issues/229
snowballstemmer>=2.0.0,!=3.0.0

# PyLint (no imports, invoked via pylint script)
pylint>=3.0.1; python_version == '3.8'
pylint>=3.3.1; python_version >= '3.9'
astroid>=3.0.1; python_version == '3.8'
astroid>=3.3.7; python_version >= '3.9'
lazy-object-proxy>=1.4.3
wrapt>=1.15
# platformdirs is also used by tox
platformdirs>=4.1.0
# isort 4.3.8 fixes an issue with py310 and works on py310 (Note that isort 5.10.0 has official support for py310)
isort>=4.3.8
tomlkit>=0.10.1
dill>=0.3.7

# Flake8 and dependents (no imports, invoked via flake8 script):
flake8>=6.1.0
mccabe>=0.7.0
pycodestyle>=2.11.0
pyflakes>=3.1.0
entrypoints>=0.3.0

# Ruff checker (no imports, invoked via ruff script):
ruff>=0.3.5

# Unit test (indirect dependencies):
# pluggy is used by pytest, tox
# pytest 8.4.0 depends on pluggy<2,>=1.5
pluggy>=1.5.0

# Package dependency management tools (not used by any make rules)
pipdeptree>=2.24.0
# pip-check-reqs 2.4.3 fixes a speed issue on Python 3.11 and requires pip>=21.2.4
# pip-check-reqs 2.5.0 dropped support for py38
# pip-check-reqs 2.5.0 has issue https://github.com/r1chardj0n3s/pip-check-reqs/issues/143
pip-check-reqs>=2.4.3,!=2.5.0; python_version == '3.8'
pip-check-reqs>=2.5.1; python_version >= '3.9'
