Browse Source

Merge JoinMarket-Org/joinmarket-clientserver#1524: Fix `pyaes` dependency, should be in `jmbase`, not `jmbitcoin`

90fe9b2430 Fix pyaes dependency, should be in jmbase, not jmbitcoin (Kristaps Kaupe)

Pull request description:

  Mistake was made while merging #1512.

ACKs for top commit:
  AdamISZ:
    ACK 90fe9b2430

Tree-SHA512: 30bc461bf7055bf8af81fc4165492c7f06bb6b923b7e92878dccbfb6d8e14d15950a7d3c5b9b5d681fbd8701cc3a028ad1f10bbc3b56346e387092c3eb88178b
master
Kristaps Kaupe 2 years ago
parent
commit
c40ea379f3
No known key found for this signature in database
GPG Key ID: 33E472FE870C7E5D
  1. 2
      jmbase/setup.py
  2. 2
      jmbitcoin/setup.py

2
jmbase/setup.py

@ -10,6 +10,6 @@ setup(name='joinmarketbase',
license='GPL',
packages=['jmbase'],
install_requires=['twisted==22.4.0', 'service-identity==21.1.0',
'chromalog==1.0.5'],
'chromalog==1.0.5', 'pyaes==1.6.1'],
python_requires='>=3.7',
zip_safe=False)

2
jmbitcoin/setup.py

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

Loading…
Cancel
Save