Skip to content

Commit

Permalink
Use an http-parser for pymesos that builds on 3.7+ (#2931)
Browse files Browse the repository at this point in the history
  • Loading branch information
adamnovak authored Jan 22, 2020
1 parent 743de79 commit a1a6aab
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,11 @@ def runSetup():
futures = 'futures==3.1.1'
pycryptodome = 'pycryptodome==3.5.1'
pymesos = 'pymesos==0.3.7'
# We need this specific http-parser that still claims to be version 0.8.3
# but which builds on Python 3.7+, to satisfy pymesos
http_parser = 'http-parser' + \
'@https://github.com/adamnovak/http-parser/archive/190a17839ba229c635b59d960579451a81fe73f3.zip' + \
'#sha256=3d30c84a426627e468657c44de199daee9d3210a48e392d4ad2e7497c5010949'
psutil = 'psutil >= 3.0.1, <6'
pynacl = 'pynacl==1.1.2'
gcs = 'google-cloud-storage==1.6.0'
Expand Down Expand Up @@ -80,6 +85,7 @@ def runSetup():
kubernetes_reqs = [
kubernetes]
mesos_reqs = [
http_parser,
pymesos,
psutil]
wdl_reqs = []
Expand Down

0 comments on commit a1a6aab

Please sign in to comment.