From 9326145fe4e046652a58e34293e205feecd1d3d6 Mon Sep 17 00:00:00 2001 From: Marko Kreen Date: Sun, 31 Mar 2024 20:06:52 +0300 Subject: [PATCH] tox: upgrade packages --- .pylintrc | 1 + tox.ini | 14 +++++++------- 2 files changed, 8 insertions(+), 7 deletions(-) diff --git a/.pylintrc b/.pylintrc index ac5854c..8506f77 100644 --- a/.pylintrc +++ b/.pylintrc @@ -82,6 +82,7 @@ disable=bare-except, redefined-builtin, import-outside-toplevel, duplicate-code, + consider-using-min-builtin, unnecessary-pass # Enable the message, report, category or checker with the given id(s). You can diff --git a/tox.ini b/tox.ini index 6a8dd22..d1d408d 100644 --- a/tox.ini +++ b/tox.ini @@ -5,19 +5,19 @@ envlist = lint,docs,py3-pycryptodome,py3-cryptography,py3 [package] name = rarfile deps = - pycryptodome: pycryptodome==3.15.0 - cryptography: cryptography==41.0.3 + pycryptodome: pycryptodome==3.20.0 + cryptography: cryptography==42.0.5 test_deps = #coverage==7.3.1 - coverage==7.2.7 - pytest==7.4.2 - pytest-cov==4.1.0 - pytest-xdist==3.3.1 + coverage==7.4.4 + pytest==8.1.1 + pytest-cov==5.0.0 + pytest-xdist==3.5.0 doc_deps = sphinx==7.2.6 docutils==0.20.1 lint_deps = - pylint==2.17.5 + pylint==3.1.0 [testenv] deps = -- 2.11.4.GIT