Skip to content

Commit

Permalink
v4.3.1: Docker support
Browse files Browse the repository at this point in the history
  • Loading branch information
ralphwetzel committed May 10, 2019
1 parent 57407f1 commit 69eac2e
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -378,13 +378,13 @@ def generate_data_files(data_files):
'psutil>=5.4.0',
'apscheduler>=2.1.2, <3.*; python_version<"3.0"',
'apscheduler>=3.4; python_version>="3.0"',
'requests>2.18',
'requests>=2.21',
'PySocks>=1.6.7',
'bottle>=0.12.13',
'stem>=1.5.4, <=1.6',
'tzlocal>=1.5',
'futures>=3.2; python_version<"3.0"',
'urllib3>=1.24.2'
'urllib3>=1.24.2, <1.25' # '<1.25' due to requests 2.21 requirement
],
long_description_content_type='text/x-rst; charset=UTF-8',
classifiers=[
Expand Down
2 changes: 1 addition & 1 deletion theonionbox/stamp.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
__description__ = 'The Onion Box: WebInterface to monitor Tor node operations.'
__version__ = '4.3.1'
__stamp__ = '20190510|231356'
__stamp__ = '20190510|235929'
4 changes: 2 additions & 2 deletions theonionbox/theonionbox.py
Original file line number Diff line number Diff line change
Expand Up @@ -527,7 +527,7 @@ def get_user():
'version': '>=3.4; python_version>="3.0"'
},
'requests': {
'version': '>=2.18.0'
'version': '>=2.21.0'
},
'tzlocal': {
'version': '>=1.5'
Expand All @@ -539,7 +539,7 @@ def get_user():
'version': '>=3.2; python_version<"3.0"'
},
'urllib3': {
'version': '>=1.22'
'version': '>=1.24.2, <1.25'
}
}

Expand Down

0 comments on commit 69eac2e

Please sign in to comment.