drop python 3.2-3.5 support

merge-requests/5/head
selfisekai 2020-11-01 22:51:06 +01:00
parent f0fa837992
commit cffa942bf1
2 changed files with 1 additions and 73 deletions

View File

@ -22,78 +22,6 @@ py2.7-download:
script:
- ./devscripts/run_tests.sh
py3.2-core:
image: python:3.2
variables:
HDL_TEST_SET: core
before_script:
- pip install nose
script:
- ./devscripts/run_tests.sh
py3.2-download:
image: python:3.2
variables:
HDL_TEST_SET: download
allow_failure: true
before_script:
- pip install nose
script:
- ./devscripts/run_tests.sh
py3.3-core:
image: python:3.3-alpine
variables:
HDL_TEST_SET: core
before_script:
- apk update
- apk add bash
- pip install nose
script:
- ./devscripts/run_tests.sh
py3.3-download:
image: python:3.3-alpine
variables:
HDL_TEST_SET: download
before_script:
- apk update
- apk add bash
- pip install nose
allow_failure: true
script:
- ./devscripts/run_tests.sh
py3.4-core:
image: python:3.4-alpine
variables:
HDL_TEST_SET: core
script:
- ./devscripts/run_tests.sh
py3.4-download:
image: python:3.4-alpine
variables:
HDL_TEST_SET: download
allow_failure: true
script:
- ./devscripts/run_tests.sh
py3.5-core:
image: python:3.5-alpine
variables:
HDL_TEST_SET: core
script:
- ./devscripts/run_tests.sh
py3.5-download:
image: python:3.5-alpine
variables:
HDL_TEST_SET: download
allow_failure: true
script:
- ./devscripts/run_tests.sh
py3.6-core:
image: python:3.6-alpine
variables:

View File

@ -1,5 +1,5 @@
[tox]
envlist = py26,py27,py33,py34,py35
envlist = py27,py36,py37,py38,py39
[testenv]
deps =
nose