diff options
author | siddharth <s@ricketyspace.net> | 2021-10-31 15:32:37 -0400 |
---|---|---|
committer | siddharth <s@ricketyspace.net> | 2021-10-31 15:32:37 -0400 |
commit | 8cdcc06a318effedc24fdeb9a6b37eb96b243311 (patch) | |
tree | dbe52219d9a24d63da354cbb61422533bc94af28 | |
parent | 476ed4a035616a2a702cc26c9438209561eb6fd3 (diff) |
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.
-rw-r--r-- | setup.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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', |