move main file, remove checks for outdated Python
these are now handled by setup.py's python_requires.
This commit is contained in:
parent
41a37eca1c
commit
ee414cde70
|
@ -64,15 +64,6 @@ jobs:
|
||||||
with:
|
with:
|
||||||
file: ./coverage.xml
|
file: ./coverage.xml
|
||||||
name: ${{ matrix.os }}
|
name: ${{ matrix.os }}
|
||||||
test-unsupported-python-version:
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
steps:
|
|
||||||
- uses: actions/checkout@v1
|
|
||||||
- uses: actions/setup-python@v2
|
|
||||||
with:
|
|
||||||
python-version: '3.5'
|
|
||||||
- run: pip install tox
|
|
||||||
- run: tox -e py35
|
|
||||||
build-wheel:
|
build-wheel:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
env:
|
env:
|
||||||
|
|
8
tox.ini
8
tox.ini
|
@ -14,14 +14,6 @@ commands =
|
||||||
--full-cov=mitmproxy/ --full-cov=pathod/ \
|
--full-cov=mitmproxy/ --full-cov=pathod/ \
|
||||||
{posargs}
|
{posargs}
|
||||||
|
|
||||||
[testenv:py35]
|
|
||||||
whitelist_externals =
|
|
||||||
bash
|
|
||||||
deps =
|
|
||||||
-rrequirements.txt
|
|
||||||
commands =
|
|
||||||
bash -c "mitmdump --version 2>&1 | grep 'mitmproxy requires Python 3.8'"
|
|
||||||
|
|
||||||
[testenv:flake8]
|
[testenv:flake8]
|
||||||
deps = flake8==3.8.4
|
deps = flake8==3.8.4
|
||||||
commands =
|
commands =
|
||||||
|
|
Loading…
Reference in New Issue