From 8736ebd77b76625b5a0016b3ca402ff94d2c4245 Mon Sep 17 00:00:00 2001 From: Ayush Date: Mon, 17 Dec 2018 16:55:41 +0530 Subject: [PATCH] Update dependencies --- chaos/chaosd.py | 5 ++--- chaos/utils/{context_manager.py => pidfile.py} | 0 poetry.lock | 11 ++++++++++- pyproject.toml | 1 + 4 files changed, 13 insertions(+), 4 deletions(-) rename chaos/utils/{context_manager.py => pidfile.py} (100%) diff --git a/chaos/chaosd.py b/chaos/chaosd.py index c460f7f..c37876a 100644 --- a/chaos/chaosd.py +++ b/chaos/chaosd.py @@ -4,8 +4,7 @@ Add/Fix: 1. Tests and coverage 2. CI -3. Dependency management -4. Build system +3. Build system """ import functools @@ -19,7 +18,7 @@ from daemon import DaemonContext from PyQt5.QtGui import QGuiApplication, QClipboard from PyQt5.QtCore import QObject, QMimeData, QTimer from random import random -from utils.context_manager import PidFile +from utils.pidfile import PidFile TGT = "a" diff --git a/chaos/utils/context_manager.py b/chaos/utils/pidfile.py similarity index 100% rename from chaos/utils/context_manager.py rename to chaos/utils/pidfile.py diff --git a/poetry.lock b/poetry.lock index 0380c4c..cf0c044 100644 --- a/poetry.lock +++ b/poetry.lock @@ -172,6 +172,14 @@ optional = false python-versions = "*" version = "5.11.3" +[[package]] +category = "main" +description = "Python extension module support for PyQt5" +name = "pyqt5-sip" +optional = false +python-versions = "*" +version = "4.19.13" + [[package]] category = "dev" description = "pytest: simple powerful testing with Python" @@ -220,7 +228,7 @@ python-versions = "*" version = "0.10.0" [metadata] -content-hash = "c58e73aca0450a1b7895332d33008f6dc4b3b95fdbbbac6bd87a0e57e91b2144" +content-hash = "07b1f4971649cfc889418ed0588c5b0568e229b5d96dddf1533368a5f29789c2" python-versions = "^3.6" [metadata.hashes] @@ -243,6 +251,7 @@ pluggy = ["447ba94990e8014ee25ec853339faf7b0fc8050cdc3289d4d71f7f410fb90095", "b py = ["bf92637198836372b520efcba9e020c330123be8ce527e535d185ed4b6f45694", "e76826342cefe3c3d5f7e8ee4316b80d1dd8a300781612ddbc765c17ba25a6c6"] pyinstaller = ["a5a6e04a66abfcf8761e89a2ebad937919c6be33a7b8963e1a961b55cb35986b"] pyqt5 = ["517e4339135c4874b799af0d484bc2e8c27b54850113a68eec40a0b56534f450", "ac1eb5a114b6e7788e8be378be41c5e54b17d5158994504e85e43b5fca006a39", "d2309296a5a79d0a1c0e6c387c30f0398b65523a6dcc8a19cc172e46b949e00d", "e85936bae1581bcb908847d2038e5b34237a5e6acc03130099a78930770e7ead"] +pyqt5-sip = ["125f77c087572c9272219cda030a63c2f996b8507592b2a54d7ef9b75f9f054d", "14c37b06e3fb7c2234cb208fa461ec4e62b4ba6d8b32ca3753c0b2cfd61b00e3", "1cb2cf52979f9085fc0eab7e0b2438eb4430d4aea8edec89762527e17317175b", "4babef08bccbf223ec34464e1ed0a23caeaeea390ca9a3529227d9a57f0d6ee4", "53cb9c1208511cda0b9ed11cffee992a5a2f5d96eb88722569b2ce65ecf6b960", "549449d9461d6c665cbe8af4a3808805c5e6e037cd2ce4fd93308d44a049bfac", "5f5b3089b200ff33de3f636b398e7199b57a6b5c1bb724bdb884580a072a14b5", "a4d9bf6e1fa2dd6e73f1873f1a47cee11a6ba0cf9ba8cf7002b28c76823600d0", "a4ee6026216f1fbe25c8847f9e0fbce907df5b908f84816e21af16ec7666e6fe", "a91a308a5e0cc99de1e97afd8f09f46dd7ca20cfaa5890ef254113eebaa1adff", "b0342540da479d2713edc68fb21f307473f68da896ad5c04215dae97630e0069", "f997e21b4e26a3397cb7b255b8d1db5b9772c8e0c94b6d870a5a0ab5c27eacaa"] pytest = ["3f193df1cfe1d1609d4c583838bea3d532b18d6160fd3f55c9447fdca30848ec", "e246cf173c01169b9617fc07264b7b1316e78d7a650055235d6d897bc80d9660"] python-daemon = ["aca149ebf7e73f10cd554b2df5c95295d49add8666348eff6195053ec307728c"] six = ["3350809f0555b11f552448330d0b52d5f24c91a322ea4a15ef22629740f3761c", "d16a0141ec1a18405cd4ce8b4613101da75da0e9a7aec5bdd4fa804d0e0eba73"] diff --git a/pyproject.toml b/pyproject.toml index 7a05cb7..21a6538 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -11,6 +11,7 @@ cerberus = "^1.2" beautifulsoup4 = "^4.6" pyinstaller = "^3.4" python-daemon = "^2.2" +pyqt5-sip = "^4.19" [tool.poetry.dev-dependencies] pytest = "^3.0"