From 8cdcc06a318effedc24fdeb9a6b37eb96b243311 Mon Sep 17 00:00:00 2001 From: siddharth Date: Sun, 31 Oct 2021 15:32:37 -0400 Subject: setup.py: install_requires: fix PyYAML version PyYAML 5.4.1.1 only exists in the git repo; not available on pypi. Use version 5.4.1 instead. --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 33ea2f3..14bc393 100644 --- a/setup.py +++ b/setup.py @@ -39,7 +39,7 @@ config = { 'download_url': 'https://git.ricketyspace.net/combox', 'author': 'combox contributors', 'author_email': 'sravik@bgsu.edu', - 'install_requires': ['watchdog', 'PyYAML==5.4.1.1', 'pycrypto', + 'install_requires': ['watchdog', 'PyYAML==5.4.1', 'pycrypto', 'simplejson', 'pickledb'], 'tests_require': ['nose', 'mock'], 'test_suite': 'nose.collector', -- cgit v1.2.3