diff --git a/jmbase/setup.py b/jmbase/setup.py index 3b0e773..7608a38 100644 --- a/jmbase/setup.py +++ b/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', 'pyaes==1.6.1'], - python_requires='>=3.6', + 'chromalog==1.0.5'], + python_requires='>=3.7', zip_safe=False) diff --git a/jmbitcoin/setup.py b/jmbitcoin/setup.py index 4292046..c71f6f0 100644 --- a/jmbitcoin/setup.py +++ b/jmbitcoin/setup.py @@ -9,6 +9,6 @@ setup(name='joinmarketbitcoin', author_email='', license='GPL', packages=['jmbitcoin'], - python_requires='>=3.6', - install_requires=['python-bitcointx==1.1.3'], + python_requires='>=3.7', + install_requires=['python-bitcointx==1.1.3', 'pyaes==1.6.1'], zip_safe=False) diff --git a/jmclient/setup.py b/jmclient/setup.py index 1458bbf..f00ef83 100644 --- a/jmclient/setup.py +++ b/jmclient/setup.py @@ -13,5 +13,5 @@ setup(name='joinmarketclient', 'argon2_cffi==21.3.0', 'bencoder.pyx==3.0.1', 'klein==20.6.0', 'pyjwt==2.4.0', 'autobahn==20.12.3', 'werkzeug==2.2.3'], - python_requires='>=3.6', + python_requires='>=3.7', zip_safe=False) diff --git a/jmdaemon/setup.py b/jmdaemon/setup.py index 2e25558..923c51f 100644 --- a/jmdaemon/setup.py +++ b/jmdaemon/setup.py @@ -14,5 +14,5 @@ setup(name='joinmarketdaemon', 'cryptography==41.0.2; platform_machine == "aarch64" or platform_machine == "amd64" or platform_machine == "x86_64"', 'pyopenssl==23.2.0', 'libnacl==1.8.0', 'joinmarketbase==0.9.10dev'], - python_requires='>=3.6', + python_requires='>=3.7', zip_safe=False) diff --git a/jmqtui/setup.py b/jmqtui/setup.py index 1f32bed..19a0be5 100644 --- a/jmqtui/setup.py +++ b/jmqtui/setup.py @@ -9,7 +9,7 @@ setup(name='joinmarketui', license='GPL', packages=['jmqtui'], install_requires=['PyQt5!=5.15.0,!=5.15.1,!=5.15.2,!=6.0'], - python_requires='>=3.6', + python_requires='>=3.7', zip_safe=False) # The following command should be executed whenever `open_wallet_dialog.ui` is updated. diff --git a/setupall.py b/setupall.py index c4db920..a31b2ef 100644 --- a/setupall.py +++ b/setupall.py @@ -17,8 +17,8 @@ to libsodium. All modes require and install twisted. """ -if sys.version_info < (3, 6): - raise RuntimeError("This package requres Python 3.6+") +if sys.version_info < (3, 7): + raise RuntimeError("This package requres Python 3.7+") def help(): print("Usage: python setupall.py \n"