Drop Python 3.4 support

This commit is contained in:
IamTheFij 2020-01-06 19:15:34 -08:00
parent eed6262f27
commit 5a7adbcff5
3 changed files with 1 additions and 34 deletions

View File

@ -25,37 +25,6 @@ steps:
when: when:
status: [ changed, failure ] status: [ changed, failure ]
---
kind: pipeline
name: test-python3.4
workspace:
base: /app
path: .
steps:
- name: test
image: python:3.4
environment:
TOXENV: py3
commands:
- python -V
- pip install tox
- tox
- name: notify
image: drillster/drone-email
settings:
host:
from_secret: SMTP_HOST
username:
from_secret: SMTP_USER
password:
from_secret: SMTP_PASS
from: drone@iamthefij.com
when:
status: [ changed, failure ]
--- ---
kind: pipeline kind: pipeline
name: test-python3.5 name: test-python3.5

View File

@ -1,9 +1,8 @@
---
dist: xenial dist: xenial
language: python language: python
matrix: matrix:
include: include:
- python: "3.4"
env: TOXENV=py3
- python: "3.5" - python: "3.5"
env: TOXENV=py3 env: TOXENV=py3
- python: "3.6" - python: "3.6"

View File

@ -29,7 +29,6 @@ setup(
'Topic :: System :: Monitoring', 'Topic :: System :: Monitoring',
'License :: OSI Approved :: Apache Software License', 'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 3', 'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5', 'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6', 'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7', 'Programming Language :: Python :: 3.7',