WARNING: THIS SITE IS A MIRROR OF GITHUB.COM / IT CANNOT LOGIN OR REGISTER ACCOUNTS / THE CONTENTS ARE PROVIDED AS-IS / THIS SITE ASSUMES NO RESPONSIBILITY FOR ANY DISPLAYED CONTENT OR LINKS / IF YOU FOUND SOMETHING MAY NOT GOOD FOR EVERYONE, CONTACT ADMIN AT ilovescratch@foxmail.com
Skip to content

Commit 7cb1550

Browse files
authored
Merge pull request #10 from MobSF/latest
mitmproxy bump + httptools v4
2 parents 5940cea + ff4293a commit 7cb1550

File tree

3 files changed

+6
-5
lines changed

3 files changed

+6
-5
lines changed

.github/workflows/python-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
strategy:
1414
max-parallel: 4
1515
matrix:
16-
python-version: [3.9, '3.10']
16+
python-version: ['3.10', '3.11']
1717

1818
steps:
1919
- uses: actions/checkout@v2

http_tools/modules/runner.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ def run_module(mode, project_name, host, port, upstream):
2828
'--flow-detail', '0'])
2929
elif mode == 'intercept':
3030
arguments.extend([
31+
'--quiet',
3132
'--scripts', os.path.join(script_dir, 'interceptor.py')])
3233
elif mode == 'repeat':
3334
arguments = [

setup.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ def read(rel_path):
1717
'[mitmproxy](https://mitmproxy.org/)')
1818
setup(
1919
name='http-tools',
20-
version='3.0.0',
20+
version='4.0.0',
2121
description=description,
2222
author='Ajin Abraham',
2323
author_email='[email protected]',
@@ -26,7 +26,7 @@ def read(rel_path):
2626
'Intended Audience :: Developers',
2727
('License :: OSI Approved :: GNU Lesser '
2828
'General Public License v3 or later (LGPLv3+)'),
29-
'Programming Language :: Python :: 3.9',
29+
'Programming Language :: Python :: 3.10',
3030
],
3131
packages=find_packages(include=[
3232
'http_tools', 'http_tools.*',
@@ -42,7 +42,7 @@ def read(rel_path):
4242
long_description=read('README.md'),
4343
long_description_content_type='text/markdown',
4444
install_requires=[
45-
'mitmproxy==9.0.1',
46-
'markupsafe==2.0.1',
45+
'mitmproxy==10.1.5',
46+
'markupsafe>=2.1.3',
4747
],
4848
)

0 commit comments

Comments
 (0)