From 4e30ee4b97d77b5004e9a388adabead9d7f5aa71 Mon Sep 17 00:00:00 2001 From: Patrik <21142447+ggravlingen@users.noreply.github.com> Date: Thu, 19 Sep 2019 07:35:32 +0200 Subject: [PATCH] Pin dependencies (#248) * Update setup.py --- setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index fa81e164..4ef753d0 100755 --- a/setup.py +++ b/setup.py @@ -13,12 +13,12 @@ with open(path.join(here, 'README.md'), encoding='utf-8') as f: long_description = f.read() -VERSION = "6.3.0" +VERSION = "6.3.1" DOWNLOAD_URL = \ 'https://github.com/ggravlingen/pytradfri/archive/{}.zip'.format(VERSION) EXTRAS_REQUIRE = { - 'async': ['aiocoap >= 0.4a1', 'DTLSSocket >= 0.1.4'] + 'async': ['aiocoap==0.4a1', 'DTLSSocket==0.1.7'] } PACKAGES = find_packages(exclude=['tests', 'tests.*'])