diff --git a/.drone.jsonnet b/.drone.jsonnet index bcf8fdc..7c62ebb 100644 --- a/.drone.jsonnet +++ b/.drone.jsonnet @@ -5,7 +5,6 @@ local Pipeline(py_version) = { { name: "test", image: "python:" + py_version, - [if py_version == "2.7" then "failure" else null]: "ignore", commands: [ "pip install .", "pip install -r requirements-dev.txt", @@ -16,7 +15,6 @@ local Pipeline(py_version) = { }; [ - Pipeline("2.7"), Pipeline("3.5"), Pipeline("3.6"), Pipeline("3.7"), @@ -28,7 +26,6 @@ local Pipeline(py_version) = { status: ['success'], }, depends_on: [ - # We are ignoring 2.7 since it's randomly fails because of certificate_transparency module "tests (Python 3.5)", "tests (Python 3.6)", "tests (Python 3.7)", diff --git a/setup.py b/setup.py index a3c2f07..774aea4 100755 --- a/setup.py +++ b/setup.py @@ -18,7 +18,6 @@ setup( classifiers=[ 'Development Status :: 4 - Beta', 'License :: OSI Approved :: MIT License', - 'Programming Language :: Python :: 2.7', 'Programming Language :: Python :: 3.5', 'Programming Language :: Python :: 3.6', 'Programming Language :: Python :: 3.7',