Upgrade dependencies (#1745)

pull/1750/head
Gulshan Singh 3 years ago committed by GitHub
parent 91f3081e4b
commit 772eddc51e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -1,19 +1,19 @@
black==22.8.0; python_version < '3.7'
black==22.12.0; python_version >= '3.7'
black==23.3.0; python_version >= '3.7'
coverage==6.2; python_version < '3.7'
coverage==7.0.1; python_version >= '3.7'
mypy==0.991; python_version >= '3.7'
isort==5.10.1; python_version < '3.7'
isort==5.11.4; python_version >= '3.7'
coverage==7.2.6; python_version >= '3.7'
isort==5.10.1; python_version <= '3.7'
isort==5.12.0; python_version > '3.7'
mypy==1.3.0; python_version >= '3.7'
pytest==7.0.1; python_version < '3.7'
pytest==7.2.0; python_version >= '3.7'
pytest==7.3.1; python_version >= '3.7'
rich==12.6.0; python_version < '3.7'
rich==13.3.1; python_version >= '3.7'
ruff==0.0.264; python_version >= '3.7'
rich==13.3.5; python_version >= '3.7'
ruff==0.0.270; python_version >= '3.7'
testresources==2.0.1
types-gdb==12.1.4.1
types-psutil==5.9.5
types-Pygments==2.12.1
types-tabulate==0.9.0.0
types-requests==2.28.11.17
types-Pygments==2.15.0
types-tabulate==0.9.0
types-requests==2.31.0
vermin==1.5.1

@ -13,7 +13,7 @@ with pwndbg.lib.stdio.stdio:
try:
import ipdb as pdb
except ImportError:
import pdb # type: ignore
import pdb
try:
from rich.console import Console

@ -1,14 +1,15 @@
capstone==4.0.2
psutil==5.9.4
pwntools==4.9.0
psutil==5.9.5
pwntools==4.10.0
pycparser==2.21
pyelftools==0.29
Pygments==2.13.0
Pygments==2.14.0; python_version < '3.7'
Pygments==2.15.1; python_version >= '3.7'
ROPGadget==7.2
tabulate==0.8.10
typing-extensions==4.3.0; python_version >= '3.7'
tabulate==0.8.10; python_version < '3.7'
tabulate==0.9.0; python_version >= '3.7'
typing-extensions==4.6.1; python_version >= '3.7'
typing-extensions==4.1.1; python_version < '3.7'
unicorn==2.0.1.post1; python_version >= '3.7'
unicorn==2.0.0rc7; python_version < '3.7'
requests>=2.20.0
types-requests>=2.20.0

Loading…
Cancel
Save