From: Marcelo Trylesinski Date: Tue, 31 Aug 2021 12:13:42 +0000 (+0200) Subject: 📌 Pin development requirements (#1721) X-Git-Tag: 1.0.0.beta0~13 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=0ccc3fa9be3ccfbf59b834e72cca59126e243881;p=thirdparty%2Fhttpx.git 📌 Pin development requirements (#1721) * :pushpin: Pin development requirements * :heavy_minus_sign: Remove attrs dependency * Add note about decision here Co-authored-by: Tom Christie Co-authored-by: Joe --- diff --git a/requirements.txt b/requirements.txt index 2ab8a8d6..9e9b594b 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,31 +1,33 @@ +# We're pinning our tooling, because it's an environment we can strictly control. +# On the other hand, we're not pinning package dependencies, because our tests +# needs to pass with the latest version of the packages. +# Reference: https://github.com/encode/httpx/pull/1721#discussion_r661241588 -e .[http2,brotli] # Documentation -mkdocs -mkautodoc -mkdocs-material +mkdocs==1.2.1 +mkautodoc==0.1.0 +mkdocs-material==7.1.8 # Packaging -twine -wheel +twine==3.4.1 +wheel==0.36.2 # Tests & Linting -autoflake +autoflake==1.4 black==20.8b1 coverage==5.3 -cryptography -flake8 -flake8-bugbear -flake8-pie==0.5.* -isort==5.* -mypy -types-certifi -pytest==6.* -pytest-asyncio -pytest-trio -trio -trio-typing -trustme +cryptography==3.4.7 +flake8==3.9.2 +flake8-bugbear==21.4.3 +flake8-pie==0.5.0 +isort==5.9.1 +mypy==0.910 +types-certifi==0.1.4 +pytest==6.2.4 +pytest-asyncio==0.15.1 +pytest-trio==0.7.0 +trio==0.19.0 +trio-typing==0.5.0 +trustme==0.8.0 uvicorn==0.14.0 - -attrs>=19.3.0 # See: https://github.com/encode/httpx/pull/566#issuecomment-559862665