Skip to content

Commit

Permalink
Scheduled weekly dependency update for week 07 (#621)
Browse files Browse the repository at this point in the history
A bunch of additional dependencies are pinned lower for #604
  • Loading branch information
pyup-bot authored Feb 14, 2022
1 parent 1b87561 commit 5799fc7
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 17 deletions.
22 changes: 11 additions & 11 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -14,32 +14,32 @@ 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

# Database connections and management
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
Expand All @@ -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
12 changes: 6 additions & 6 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,31 +34,31 @@
'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',
'asgiref==3.4.1',
'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',
Expand Down

0 comments on commit 5799fc7

Please sign in to comment.