Browse Source

Merge JoinMarket-Org/joinmarket-clientserver#1398: Pin remaining deps to specific versions, except for Qt and tests

8a25e3a401 Pin remaining deps to specific versions, except for Qt and tests (Kristaps Kaupe)

Pull request description:

  For tests it's not important, with Qt there is big mess currently, don't want to touch it here.

Top commit has no ACKs.

Tree-SHA512: 4a72a41302aee5dd3ea289db0c21870753be2586a63f7575f6299749fe0c96924f2cc3f169e6cd873c51d926c62fe41389320712521cf0538458a54ad270c774
master
Kristaps Kaupe 3 years ago
parent
commit
6160418516
No known key found for this signature in database
GPG Key ID: 33E472FE870C7E5D
  1. 2
      jmbase/setup.py
  2. 2
      jmbitcoin/setup.py
  3. 7
      jmclient/setup.py
  4. 4
      jmdaemon/setup.py

2
jmbase/setup.py

@ -9,7 +9,7 @@ setup(name='joinmarketbase',
author_email='',
license='GPL',
packages=['jmbase'],
install_requires=['twisted==22.4.0', 'service-identity',
install_requires=['twisted==22.4.0', 'service-identity==21.1.0',
'chromalog==1.0.5'],
python_requires='>=3.6',
zip_safe=False)

2
jmbitcoin/setup.py

@ -10,5 +10,5 @@ setup(name='joinmarketbitcoin',
license='GPL',
packages=['jmbitcoin'],
python_requires='>=3.6',
install_requires=['python-bitcointx==1.1.3', 'pyaes'],
install_requires=['python-bitcointx==1.1.3', 'pyaes==1.6.1'],
zip_safe=False)

7
jmclient/setup.py

@ -9,8 +9,9 @@ setup(name='joinmarketclient',
author_email='',
license='GPL',
packages=['jmclient'],
install_requires=['joinmarketbase==0.9.9dev', 'mnemonic', 'argon2_cffi',
'bencoder.pyx>=2.0.0', 'pyaes', 'klein==20.6.0',
'pyjwt==2.4.0', 'autobahn==20.12.3'],
install_requires=['joinmarketbase==0.9.9dev', 'mnemonic==0.20',
'argon2_cffi==21.3.0', 'bencoder.pyx==3.0.0',
'pyaes==1.6.1', 'klein==20.6.0', 'pyjwt==2.4.0',
'autobahn==20.12.3'],
python_requires='>=3.6',
zip_safe=False)

4
jmdaemon/setup.py

@ -9,6 +9,8 @@ setup(name='joinmarketdaemon',
author_email='',
license='GPL',
packages=['jmdaemon'],
install_requires=['txtorcon', 'cryptography==3.3.2', 'pyopenssl', 'libnacl', 'joinmarketbase==0.9.9dev'],
install_requires=['txtorcon==22.0.0', 'cryptography==3.3.2',
'pyopenssl==21.0.0', 'libnacl==1.8.0',
'joinmarketbase==0.9.9dev'],
python_requires='>=3.6',
zip_safe=False)

Loading…
Cancel
Save