Update dependencies

This commit is contained in:
Pedro Ferreira 2019-06-12 21:06:56 +02:00
parent aab2ac18b3
commit b4a3d0cda6
2 changed files with 15 additions and 15 deletions

View File

@ -1,5 +1,5 @@
colorlog colorlog
pynacl pynacl
pyyaml pyyaml>=4.2b1
secret-handshake secret-handshake
simplejson simplejson

View File

@ -27,31 +27,31 @@ readme = open('README.rst').read()
history = open('CHANGES.rst').read() history = open('CHANGES.rst').read()
tests_require = [ tests_require = [
'check-manifest>=0.25', 'check-manifest>=0.39',
'coverage>=4.0', 'coverage>=4.5.3',
'isort>=4.2.2', 'isort>=4.3.20',
'pep257>=0.7.0', 'pep257>=0.7.0',
'pytest-cov>=1.8.0', 'pytest-cov>=2.7.1',
'pytest>=3.1.1', 'pytest>=4.6.3',
'pytest-asyncio==0.6.0', 'pytest-asyncio==0.10.0',
'asynctest==0.10.0', 'asynctest==0.13.0',
'pytest-mock==1.6.2' 'pytest-mock==1.10.4'
] ]
extras_require = { extras_require = {
'docs': [ 'docs': [
'Sphinx>=1.6.2', 'Sphinx>=2.1.1',
], ],
'tests': tests_require, 'tests': tests_require,
} }
extras_require['all'] = sum((lst for lst in extras_require.values()), []) extras_require['all'] = sum((lst for lst in extras_require.values()), [])
install_requires = [ install_requires = [
'async-generator==1.8', 'async-generator==1.10',
'pynacl==1.1.2', 'pynacl==1.3.0',
'PyYAML==3.12', 'pyyaml>=4.2b1',
'secret-handshake', 'secret-handshake',
'simplejson==3.10.0' 'simplejson==3.16.0'
] ]
setup_requires = [ setup_requires = [
@ -62,7 +62,7 @@ packages = find_packages()
setup( setup(
name='ssb', name='ssb',
version='0.1.0.dev2', version='0.1.0.dev3',
description=__doc__, description=__doc__,
long_description=(readme + '\n\n' + history), long_description=(readme + '\n\n' + history),
license='MIT', license='MIT',