Skip to content

Commit

Permalink
Merge #1485: Pin werkzeug dependency to 2.2.0
Browse files Browse the repository at this point in the history
4b2cbe9 Pin werkzeug dependency to 2.2.0 (Adam Gibson)

Pull request description:

  Fixes #1483.
  Prior to this commit, running the RPC API server using Klein failed due to a recent change in Werkzeug 2.3+, preventing any endpoint from returning anything but a 405 error. See
  twisted/klein#575.
  After this commit we pin to 2.2.0 until such time as updated versions of werkzeug/Klein are reviewed by us.

ACKs for top commit:
  kristapsk:
    re-ACK 4b2cbe9

Tree-SHA512: ae6b256aabba2a6317c9cac1b00b164c8339046b891420d03cc11405590bb9dbb6663059ca4feb4c1081074b202c33e1212052ddd0713e995be3f627aa90f795
  • Loading branch information
AdamISZ committed May 5, 2023
2 parents 2289fcb + 4b2cbe9 commit a242967
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion jmclient/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,6 @@
install_requires=['joinmarketbase==0.9.10dev', 'mnemonic==0.20',
'argon2_cffi==21.3.0', 'bencoder.pyx==3.0.1',
'pyaes==1.6.1', 'klein==20.6.0', 'pyjwt==2.4.0',
'autobahn==20.12.3'],
'autobahn==20.12.3', 'werkzeug==2.2.0'],
python_requires='>=3.6',
zip_safe=False)

0 comments on commit a242967

Please sign in to comment.