Merge pull request #133236 from fabaff/bump-pyupgrade

python3Packages.pyupgrade: 2.23.1 -> 2.23.3
This commit is contained in:
Sandro 2021-08-09 12:07:56 +02:00 committed by GitHub
commit 677fcf386c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -8,14 +8,14 @@
buildPythonPackage rec {
pname = "pyupgrade";
version = "2.23.1";
version = "2.23.3";
disabled = pythonOlder "3.6";
src = fetchFromGitHub {
owner = "asottile";
repo = pname;
rev = "v${version}";
sha256 = "1jc0gh0y5fz02wab50v6m4x0pfycdkjvf1vw05d8d0yqsv7ld7fw";
sha256 = "sha256-Z17Bs3Mr1PJ9bYP2vsXTaJ85jOoIIlKLWR6D6s7enFs=";
};
checkInputs = [ pytestCheckHook ];