From 6bca194bf8c609a9aa6098d1c1580aac23eb02e0 Mon Sep 17 00:00:00 2001 From: Jelle Zijlstra Date: Tue, 26 Mar 2024 09:28:50 -0600 Subject: [PATCH] Upgrade some dependencies (#754) --- pyproject.toml | 2 +- requirements.txt | 3 +-- tox.ini | 3 +-- 3 files changed, 3 insertions(+), 5 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index b5a4de5f..54d64de9 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -62,7 +62,7 @@ ignore = [ "F522", # .format() stuff "F523", # .format() stuff "F524", # .format() stuff - "F823", # local variable referenced before assignment + "F823", # local variable referenced before assignment "F601", # dictionary key name repeated with different values "E721", # do not compare types, use 'isinstance()' "F841", # local variable is assigned to but never used diff --git a/requirements.txt b/requirements.txt index c8dcae9b..3ca5bca0 100644 --- a/requirements.txt +++ b/requirements.txt @@ -8,5 +8,4 @@ codemod myst-parser==2.0.0 Sphinx==7.2.5 black==24.3.0 -flake8==7.0.0 -usort==1.0.8.post1 +ruff==0.2.2 diff --git a/tox.ini b/tox.ini index a1716457..7251d90f 100644 --- a/tox.ini +++ b/tox.ini @@ -6,14 +6,13 @@ skip_missing_interpreters = True [testenv] deps = .[tests] - typing-extensions==4.10.0rc1 # until 4.10.0 is released commands = pytest pyanalyze/ [testenv:black] deps = - black==24.2.0 + black==24.3.0 commands = black --check pyanalyze/