# pinned
argcomplete==3.6.1
# whitespace before operator
ruff ==0.15.9
# windows only, using environment marker
pywin32==310; os_name=='nt'
# arbitrary equality
certifi===2026.1.4

# unpinned
requests
# loose pinned
Django >=5
# multi-version pinned
sphinx >8,<9
# package with extra and wildcard version
pytest-xdist[psutil]==3.7.*

# URL referenced
urllib3 @ https://example.com/urllib3/urllib3/archive/refs/tags/1.26.8.zip

# It is possible to refer to other requirement files or constraints files.
-r other-requirements.txt
-c constraints.txt

# refer to specific local distribution paths
./downloads/numpy-1.9.2-cp34-none-win32.whl

# refer to URLs
http://example.org/builds/example-cp34-none-win_amd64.whl
https://example.org/builds/example-cp34-none-win_amd64.whl
