diff --git a/requirements.txt b/requirements.txt index 8fac6ce36..0593c2c89 100644 --- a/requirements.txt +++ b/requirements.txt @@ -14,16 +14,16 @@ datrie==0.8.2 # efficient route searching, used for RPKI setproctitle==1.2.2 # updating the process title for useful ps output python-daemon==2.3.0 # daemonising the main process pid==3.0.4 # managing PID files -redis==4.1.0 # preloaded data storage & sync through redis +redis==4.1.3 # preloaded data storage & sync through redis hiredis==2.0.0 # improved redis response parsing performance requests==2.27.1 # HTTP request handling pytz==2021.3 -ariadne==0.14.0 -uvicorn==0.16.0 # ASGI server -uvicorn[standard]==0.16.0; python_version > '3.7' # ASGI server extras -starlette==0.17.1 +ariadne==0.14.1 +uvicorn==0.16.0 # ASGI server # pyup: <0.17 # https://github.com/irrdnet/irrd/issues/604 +uvicorn[standard]==0.16.0; python_version > '3.7' # pyup: <0.17 # ASGI server extras +starlette==0.17.1 # pyup: <0.18 # ariadne conflict psutil==5.9.0 # Process management -asgiref==3.4.1 # ASGI utilities +asgiref==3.4.1 # ASGI utilities # pyup: <3.5 # https://github.com/irrdnet/irrd/issues/604 pydantic==1.9.0 # Input validation six==1.16.0 # Used in vendored dotteddict @@ -31,15 +31,15 @@ six==1.16.0 # Used in vendored dotteddict psycopg2-binary==2.9.3; platform_python_implementation == "CPython" psycopg2cffi==2.9.0; platform_python_implementation == "PyPy" SQLAlchemy==1.3.24 # pyup: <1.4 # https://github.com/irrdnet/irrd/issues/475 -alembic==1.7.5 +alembic==1.7.6 ujson==4.3.0 # pyup: <5 # https://github.com/irrdnet/irrd/issues/604 # Testing and related packages -pytest==6.2.5 +pytest==7.0.1 pytest-cov==3.0.0 pytest-env==0.6.2 -coverage==6.2 -twisted==21.7.0 # Used for a mock email server in integration tests +coverage==6.2 # pyup: <6.3 # https://github.com/irrdnet/irrd/issues/604 +twisted==22.1.0 # Used for a mock email server in integration tests python-graphql-client==0.4.2 # Documentation generation @@ -55,4 +55,4 @@ pep8-naming==0.12.1 # Creating python packages setuptools==59.6.0 # pyup: <59.7 # https://github.com/irrdnet/irrd/issues/604 wheel==0.37.1 # also require for installing, #488 -twine==3.7.1 +twine==3.8.0 diff --git a/setup.py b/setup.py index 7a6bc533a..58f563892 100755 --- a/setup.py +++ b/setup.py @@ -34,11 +34,11 @@ 'setproctitle==1.2.2', 'python-daemon==2.3.0', 'pid==3.0.4', - 'redis==4.1.0', + 'redis==4.1.3', 'hiredis==2.0.0', 'requests==2.27.1', 'pytz==2021.3', - 'ariadne==0.14.0', + 'ariadne==0.14.1', 'uvicorn==0.16.0', 'starlette==0.17.1', 'psutil==5.9.0', @@ -46,19 +46,19 @@ 'pydantic==1.9.0', 'six==1.16.0', 'SQLAlchemy==1.3.24', - 'alembic==1.7.5', + 'alembic==1.7.6', 'ujson==4.3.0', - 'wheel==0.37.0', + 'wheel==0.37.1', ], extras_require={ ':python_version < "3.7"': [ 'dataclasses==0.8', ], ':python_version > "3.7"': [ - 'uvicorn[standard]==0.15.0', + 'uvicorn[standard]==0.16.0', ], ':platform_python_implementation == "CPython"': [ - 'psycopg2-binary==2.9.2', + 'psycopg2-binary==2.9.3', ], ':platform_python_implementation == "PyPy"': [ 'psycopg2cffi==2.9.0',