Skip to content

Commit

Permalink
Merge pull request #10 from MobSF/latest
Browse files Browse the repository at this point in the history
mitmproxy bump + httptools v4
  • Loading branch information
ajinabraham authored Dec 2, 2023
2 parents 5940cea + ff4293a commit 7cb1550
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/python-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
strategy:
max-parallel: 4
matrix:
python-version: [3.9, '3.10']
python-version: ['3.10', '3.11']

steps:
- uses: actions/checkout@v2
Expand Down
1 change: 1 addition & 0 deletions http_tools/modules/runner.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ def run_module(mode, project_name, host, port, upstream):
'--flow-detail', '0'])
elif mode == 'intercept':
arguments.extend([
'--quiet',
'--scripts', os.path.join(script_dir, 'interceptor.py')])
elif mode == 'repeat':
arguments = [
Expand Down
8 changes: 4 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ def read(rel_path):
'[mitmproxy](https://mitmproxy.org/)')
setup(
name='http-tools',
version='3.0.0',
version='4.0.0',
description=description,
author='Ajin Abraham',
author_email='[email protected]',
Expand All @@ -26,7 +26,7 @@ def read(rel_path):
'Intended Audience :: Developers',
('License :: OSI Approved :: GNU Lesser '
'General Public License v3 or later (LGPLv3+)'),
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
],
packages=find_packages(include=[
'http_tools', 'http_tools.*',
Expand All @@ -42,7 +42,7 @@ def read(rel_path):
long_description=read('README.md'),
long_description_content_type='text/markdown',
install_requires=[
'mitmproxy==9.0.1',
'markupsafe==2.0.1',
'mitmproxy==10.1.5',
'markupsafe>=2.1.3',
],
)

0 comments on commit 7cb1550

Please sign in to comment.