From 54448bc04c302e17c47e21c389b98d867f1b86d4 Mon Sep 17 00:00:00 2001 From: Charlie Smith Date: Sun, 7 Apr 2019 18:39:45 +0100 Subject: [PATCH] Sync setup.py dependencies with requirements.txt --- setup.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/setup.py b/setup.py index 9cd09b4..530a0d5 100644 --- a/setup.py +++ b/setup.py @@ -40,7 +40,7 @@ def readme(): 'License :: OSI Approved :: MIT License', - 'Programming Language :: Python :: 3.6', + 'Programming Language :: Python :: 3.7', ], # What does your project relate to? @@ -59,8 +59,8 @@ def readme(): # requirements files see: # https://packaging.python.org/en/latest/requirements.html install_requires=[ - 'aiohttp==2.2.0', 'websockets==3.3', 'beautifulsoup4==4.6.0', 'lxml==3.8.0', - 'pyyaml==3.12', 'Pillow==4.2.1' + 'aiohttp==3.5.4', 'websockets==7.0', 'beautifulsoup4==4.7.1', 'lxml==4.3.3', + 'pyyaml==5.1', 'Pillow==6.0.0' ], # List additional groups of dependencies here (e.g. development @@ -68,7 +68,7 @@ def readme(): # for example: # $ pip install -e .[dev,test] extras_require={ - 'dev': ['Jinja2==2.9.6', 'jsonpatch==1.16'], + 'dev': ['Jinja2==2.10.1', 'jsonpatch==1.23'], 'test': ['pytest-asyncio==0.10.0'], },